C++ List size()函数
c++ List size()函数用于查找列表中元素的个数。这个函数不会修改deque的内容。
语法
int size();
参数
它不包含任何参数。
返回值
它返回列表中元素的个数。
示例
让我们看一个简单的例子
#include <iostream>
#include<list>
using namespace std;
int main()
{
list<int> li={1,2,3};
std::cout << "size of the list is: " << li.size()<<std::endl;
return 0;
}
输出:
size of the list is: 3
在这个例子中,size()函数返回列表的大小,即3。