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