set::max_size
セットの最大長を返します。
size_type max_size( ) const;
戻り値
セットの最大許容長。
使用例
// set_max_size.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
set <int> s1;
set <int>::size_type i;
i = s1.max_size( );
cout << "The maximum possible length "
<< "of the set is " << i << "." << endl;
}
出力例
次の出力は、x86 の場合です。
The maximum possible length of the set is 1073741823.
必要条件
ヘッダー: <set>
名前空間: std