std::unordered_multimap::max_size
来自cppreference.com
< cpp | container | unordered multimap
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
size_type max_size() const; |
(C++11 起) | |
返回元素的最大数量的容器是能够容纳由于系统或库实现限制,即std::distance(begin(), end())最大的集装箱.
原文:
Returns the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
最大数量的元素
[编辑] 例外
[编辑] 复杂性
常数
[编辑] 注释
此值通常等于std::numeric_limits<size_type>::max(),和反映所述容器的大小的理论极限。在运行时,所述容器的大小可以限制由可用的RAM的量的值小于
max_size()
.原文:
This value is typically equal to std::numeric_limits<size_type>::max(), and reflects the theoretical limit on the size of the container. At runtime, the size of the container may be limited to a value smaller than
max_size()
by the amount of RAM available.See also
返回的元素数 (公共成员函数) |