当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ smatch max_size()用法及代码示例


smatch::max_size()是C++ STL中的内置函数,该函数返回smatch容器可以容纳的match_results对象中的最大元素数。

用法:

smatch_name.max_size()

参数:该函数不接受任何参数。
返回值:此函数返回可容纳在smatch容器中的最大元素数。


以下示例程序旨在说明上述函数:

程序1:

// C++ program to illustrate the  
// smatch::max_size() function in C++ STL 
// when data-type is char  
#include <bits/stdc++.h> 
using namespace std;  
int main() 
{ 
    // match_results object(smatch) 
    match_results<char*> match; 
  
    cout << "max_size: " <<  
    match.max_size() << endl; 
  
    return 0; 
}
输出:
max_size: 768614336404564650

程序2:

// C++ program to illustrate the  
// smatch::max_size() function in C++ STL 
// when data-type is int  
#include <bits/stdc++.h> 
using namespace std;  
int main() 
{ 
    // match_results object(smatch) 
    match_results<int*> match; 
  
    cout << "max_size: " <<  
    match.max_size() << endl; 
  
    return 0; 
}
输出:
max_size: 768614336404564650


相关用法


注:本文由纯净天空筛选整理自Harsha_Mogali大神的英文原创作品 smatch max_size() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。