std::basic_string<CharT,Traits,Allocator>::max_size

来自cppreference.com
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
成员函数
元素访问
迭代器
容量
basic_string::max_size
操作
搜索
常量
推导指引 (C++17)
非成员函数
I/O
比较
(C++20 前)(C++20 前)(C++20 前)(C++20 前)(C++20 前)(C++20)
数值转换
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
辅助类
 
size_type max_size() const;
(C++11 前)
size_type max_size() const noexcept;
(C++11 起)
(C++20 前)
constexpr size_type max_size() const noexcept;
(C++20 起)

返回 string 由于保有系统或库实现限制所能保有的最大元素数,即最大 string 的 std::distance(begin(), end())

参数

(无)

返回值

最大字符数

复杂度

常数。

示例

#include <iostream>
#include <string>
 
int main()
{
    std::string s;
    std::cout << "Maximum size of a string is " << s.max_size() << "\n";
}

可能的输出:

Maximum size of a string is 4294967294

参阅

返回字符数
(公开成员函数)