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