命名空间
变体
操作

std::list<T,Allocator>::size

来自 cppreference.cn
< cpp‎ | 容器‎ | list
 
 
 
 
size_type size() const;
(C++11 前)
size_type size() const noexcept;
(C++11 起)

返回容器中的元素数量,即 std::distance(begin(), end())

目录

[编辑] 参数

(无)

[编辑] 返回值

容器中的元素数量。

[编辑] 复杂度

常数时间或线性时间。 (C++11 前)
常数时间。 (C++11 起)

[编辑] 示例

以下代码使用 size 来显示 std::list 中的元素数量。

#include <iostream>
#include <list>
 
int main()
{ 
    std::list<int> nums{1, 3, 5, 7};
 
    std::cout << "nums contains " << nums.size() << " elements.\n";
}

输出

nums contains 4 elements.

[编辑] 参阅

检查容器是否为空
(public member function) [编辑]
返回元素的最大可能数量
(public member function) [编辑]
更改存储的元素数量
(public member function) [编辑]