c ++中的字符串类支持多少个字符?

时间:2010-07-22 14:59:52

标签: c++ linux gcc

  

可能重复:
  Maximum length of a std::basic_string<_CharT> string

我想知道c ++中的字符串类支持多少个字符。

感谢..

3 个答案:

答案 0 :(得分:8)

std::string s;
s.max_size();

那应该告诉你最大尺寸是什么。

答案 1 :(得分:0)

根据http://www.idinews.com/string3.html

  

std :: string类支持不同长度的字符串,没有长度限制。

答案 2 :(得分:0)

我认为std :: string对象的大小仅限于系统体系结构中无符号整数的大小。我假设这是因为字符串的长度存储为size_t值。