public member function
<string>

std::basic_string::max_size

size_type max_size() const;
size_type max_size() const noexcept;
返回最大尺寸
返回 basic_string 可以达到的最大长度。

由于已知的系统或库实现限制,这是字符串可以达到的最大潜在长度,但不保证对象能够达到该长度:它仍然可能在该长度达到之前随时无法分配存储空间。

参数



返回值

basic_string 可以达到的最大长度。

成员类型size_type是一种无符号整型类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
// comparing size, length, capacity and max_size
#include <iostream>
#include <string>

int main ()
{
  std::string str ("Test string");
  std::cout << "size: " << str.size() << "\n";
  std::cout << "length: " << str.length() << "\n";
  std::cout << "capacity: " << str.capacity() << "\n";
  std::cout << "max_size: " << str.max_size() << "\n";
  return 0;
}

此程序的一个可能输出是
size: 11
length: 11
capacity: 15
max_size: 4294967291


复杂度

未指定,但通常是恒定的。
常量。

迭代器有效性

没有变化。

数据竞争

该对象被访问。

异常安全

无异常保证:此成员函数从不抛出异常。

另见