當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。