当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ list size()用法及代码示例


list::size(是C++ STL中的内置函数,用于查找列表容器中存在的元素数。也就是说,它用于查找列表容器的大小。

用法

list_name.size();

参数:此函数不接受任何参数。


返回值:此函数返回列表容器list_name中存在的元素数。

以下示例程序旨在说明C++ STL中的list::size()函数:

// CPP program to illustrate the 
// list::size() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Creating a list 
    list<int> 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; 
}


相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list size() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。