當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。