c – std :: string :: max_size()作为静态成员

前端之家收集整理的这篇文章主要介绍了c – std :: string :: max_size()作为静态成员前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么max_size不是std :: string的静态成员?

这编译,但我认为奇怪的是,所有字符串共有的属性只能通过字符串实例访问:

std::size_t max_size = std::string().max_size();

为什么这样实现?

解决方法

Why isn’t max_size a static member of std::string?

因为max_size返回值取决于字符串实例在内部使用的分配器实例.

原文链接:https://www.f2er.com/c/118468.html

猜你在找的C&C++相关文章