set::max_size
Retorna o comprimento máximo do conjunto.
size_type max_size( ) const;
Valor de retorno
O comprimento máximo possível de cluster.
Exemplo
// 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;
}
Saída de Exemplo
A saída a seguir é para x86.
The maximum possible length of the set is 1073741823.
Requisitos
defineCabeçalho: <>
Namespace: std