C++ List size()函数

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。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程