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


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


map::max_size()是C++ STL中的內置函數,它返回映射容器可以容納的最大元素數。

用法:

map_name.max_size()

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


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

// C++ program to illustrate 
// map::max_size() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // initialize container 
    map<int, int> mp1, mp2; 
    mp1.insert({ 1, 2 }); 
  
    // max size of Non-empty map 
    cout << "The max size of mp1 is " << mp1.max_size(); 
  
    // max size of Empty-map 
    cout << "\nThe max size of mp2 is " << mp2.max_size(); 
    return 0; 
}
輸出:
The max size of mp1 is 461168601842738790
The max size of mp2 is 461168601842738790


相關用法


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