std::vector::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::vector<int>:
#include <vector> #include <iostream> int main() { std::vector<int> nums {1, 3, 5, 7}; std::cout << "nums contains " << nums.size() << " elements.\n"; }
输出:
nums contains 4 elements.
[编辑] 另请参阅
返回的元素的数目,可以保持在当前分配的存储空间 原文: returns the number of elements that can be held in currently allocated storage (公共成员函数) | |
检查是否容器是空的 原文: checks whether the container is empty (公共成员函数) | |
返回可能容纳的最大元素数 (公共成员函数) | |
改变容器中可存储元素的个数 (公共成员函数) |