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 类

标准模板库