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;
}
샘플 출력
다음 출력에 대 한 x 86입니다.
The maximum possible length of the set is 1073741823.
요구 사항
헤더: <set>
네임 스페이스: std