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