std :: basic_string :: max_size用于计算由于系统或库的实现限制,字符串能够容纳的最大元素数。
size_type max_size() const;
Parameters : None
Return value : Maximum number of characters
Exceptions : None
// CPP program to compute the limit of a string
// using max_size
#include
#include
int main()
{
std::string str;
// Calling max_size()
std::cout << "Maximum size of a string is " << str.max_size() << std :: endl;
}
输出:
Maximum size of a string is 4294967294
注意:最大大小可能取决于编译器和系统。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。