list :: size()是C++ STL中的内置函数,用于查找列表容器中存在的元素数。也就是说,它用于查找列表容器的大小。
语法:
list_name.size();
参数:此函数不接受任何参数。
返回值:该函数返回列表容器list_name中存在的元素数。
下面的程序说明了C++ STL中的list :: size()函数:
// CPP program to illustrate the
// list::size() function
#include
using namespace std;
int main()
{
// Creating a list
list demoList;
// Add elements to the List
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// getting size of the list
int size = demoList.size();
cout << "The list contains " << size << " elements";
return 0;
}
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。