次の方法で共有


multimap::max_size

map の最大長を返します。

size_type max_size( ) const;

戻り値

map の最大許容長。

使用例

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

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

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

出力例

次の出力は、x86 の場合です。

The maximum possible length of the multimap is 536870911.

必要条件

ヘッダー: <map>

名前空間: std

参照

関連項目

multimap Class

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