次の方法で共有


multiset::max_size

多重セットの最大長を返します。

size_type max_size( ) const;

戻り値

多重セットの最大許容長。

使用例

// multiset_max_size.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   multiset <int> ms1;
   multiset <int>::size_type i;

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

出力例

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

The maximum possible length of the multiset is 1073741823.

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

multiset Class

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