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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。