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


C++ std::basic_string::max_size用法及代碼示例


std::basic_string::max_size用於計算由於係統或庫的實現限製,字符串可以容納的最大元素數。

size_type max_size() const;
參數: None
Return value: Maximum number of characters
Exceptions: None
// CPP program to compute the limit of a string 
// using max_size 
#include <iostream> 
#include <string> 
  
int main() 
{ 
    std::string str; 
      
    // Calling max_size() 
    std::cout << "Maximum size of a string is " << str.max_size() << std::endl; 
} 

輸出:

Maximum size of a string is 4294967294

注意:最大大小可能取決於編譯器和係統。




相關用法


注:本文由純淨天空篩選整理自 std::basic_string::max_size in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。