C++ 字符串库 - max_size


描述

它返回字符串可以达到的最大长度。

宣言

以下是 std::string::max_size 的声明。

size_t max_size() const;

C++11

size_t max_size() const noexcept;

参数

没有任何

返回值

它返回字符串可以达到的最大长度。

例外情况

永远不要抛出任何异常。

例子

在下面的 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
字符串.htm