次の方法で共有


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 Class

map::max_size, map::clear, map::erase, と map::size

標準テンプレート ライブラリ