C++ 字符串 max_size()函数
这个函数返回字符串由于已知系统而能达到的最大长度。
语法
假设有一个字符串str。语法应为:
str.max_size();
参数
该函数不包含任何参数。
返回值
该函数返回字符串可以达到的最大长度。
示例1
让我们看一个简单的示例。
#include<iostream>
using namespace std;
int main()
{
string str = "Hello world";
cout<<"String is :" <<str<<'\n';
cout<<"Maximum size of the string is :"<<str.max_size();
return 0;
}