C++ 可以容纳多少个字符细绳?

发布于 2024-10-04 18:00:03 字数 90 浏览 5 评论 0原文

我需要在变量中存储千字节甚至兆字节的纯文本,因此我想知道标准字符串(又名 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

停顿的约定 2024-10-11 18:00:03

std::string 具有成员函数 max_size() 返回该实现中 std::string 的最大长度。

std::string has the member function max_size() which returns the maximum length of a std::string in that implementation.

蓬勃野心 2024-10-11 18:00:03

这取决于您的实施。尝试调用 std::string::max_size() 并找出答案。

It depends on your implementation. Try calling std::string::max_size() and find out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文