map::max_size

返回映射的最大长度

size_type max_size( ) const;

返回值

映射的可能的最大长度。

示例

// map_max_size.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   map <int, int> m1;
   map <int, int> :: size_type i;

   i = m1.max_size( );
   cout << "The maximum possible length "
        << "of the map is " << i << "."
        << endl << "(Magnitude is machine specific.)";
}

示例输出

将生成下面关于x86的输出。

The maximum possible length of the map is 536870911.
(Magnitude is machine specific.)

要求

标头: <map>

命名空间: std

请参见

参考

map 类

map::max_size、map::clear、map::erase 和 map::size

标准模板库