C++ STL 中的 match max_size() 函数匹配


C++ STL 中的 match max_size() 函数返回 match 容器中可以容纳的 match_results 对象的最大元素数。

此函数不接受参数。

示例代码

 实时演示

#include<iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
   match_results<float*> m;
   cout << "max_size: " <<
   m.max_size() << endl;
   return 0;
}

此处,m 是 match_results 的对象。

输出

max_size: 768614336404564650.

更新于: 30-7 月-2019

73 次浏览

启动你的职业

完成课程认证

开始吧
广告