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


C++ list max_size()用法及代碼示例


list::max_size()是C++ STL中的內置函數,該函數返回列表容器可以容納的最大元素數。

用法

list_name.max_size()

參數:此函數不接受任何參數。


返回值:此函數返回列表容器可以容納的最大元素數。

以下示例程序旨在說明C++ STL中的list::max_size()函數:

// CPP program to illustrate the 
// list::max_size() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Creating a list 
    list<int> demoList; 
  
    // checking the max size of the list 
    cout << demoList.max_size(); 
  
    return 0; 
}
輸出:
768614336404564650


相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 list max_size() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。