C++ 可以容纳多少个字符细绳?
我需要在变量中存储千字节甚至兆字节的纯文本,因此我想知道标准字符串(又名 std::string
plus 字符串库)中可以容纳多少个字符。
I need to store in a variable, kilobytes or even megabytes of plain text, so I want to know how many characters can fit in a standard string (aka std::string
plus string library).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
std::string
具有成员函数max_size()
返回该实现中std::string
的最大长度。std::string
has the member functionmax_size()
which returns the maximum length of astd::string
in that implementation.这取决于您的实施。尝试调用 std::string::max_size() 并找出答案。
It depends on your implementation. Try calling
std::string::max_size()
and find out.