std::list<T,Allocator>::size
来自 cppreference.com
size_type size() const; |
(直到 C++11) | |
size_type size() const noexcept; |
(自 C++11 起) | |
返回容器中元素的数量,即 std::distance(begin(), end()).
内容 |
[编辑] 参数
(无)
[编辑] 返回值
容器中元素的数量。
[编辑] 复杂度
常数或线性。 | (直到 C++11) |
常数。 | (自 C++11 起) |
[编辑] 示例
[编辑] 另请参阅
检查容器是否为空 (公共成员函数) | |
返回最大可能元素数量 (公共成员函数) | |
更改存储的元素数量 (公共成员函数) |