C++ String 库 - max_size
描述
它返回字符串可以达到的最大长度。
声明
以下是 std::string::max_size 的声明。
size_t max_size() const;
C++11
size_t max_size() const noexcept;
参数
none
返回值
它返回字符串可以达到的最大长度。
异常
从不抛出任何异常。
示例
在下面的 std::string::max_size 示例中。
#include <iostream> #include <string> int main () { std::string str ("Sairamkrishna"); std::cout << "max_size: " << str.max_size() << "\n"; return 0; }
示例输出应该是这样的 −
max_size: 4611686018427387897