public member function
<regex>

std::match_results::max_size

size_type max_size() const;
返回最大尺寸
返回 match_results 对象可以容纳的最大匹配数。

这是容器由于系统约束或其库实现的限制而可以容纳的最大潜在元素数量。

参数



返回值

对象可以容纳的最大匹配(和子匹配)数。

成员类型size_type是一种无符号整型类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
// match_results::max_size
#include <iostream>
#include <regex>

int main ()
{
  std::match_results<char*> mr;

  std::cout << "max_size: " << mr.max_size() << std::endl;

  return 0;
}

可能的输出
max_size: 357913941


另见