std::map::size
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
size_type size() const; |
||
Returns the number of elements in the container, i.e. std::distance(begin(), end()).
目录 |
[编辑] 参数
(无)
[编辑] 返回值
在容器中的元素的数量
原文:
the number of elements in the container
[编辑] 例外
[编辑] 复杂性
Constant
[编辑] 为例
The following code uses size
to display the number of elements in a std::map<int>:
输出:
nums contains 4 elements.
[编辑] 另请参阅
检查是否容器是空的 原文: checks whether the container is empty (公共成员函数) | |
返回可能容纳的最大元素数 (公共成员函数) |