Condividi tramite


set::max_size

Restituisce la lunghezza massima del set.

size_type max_size( ) const;

Valore restituito

La lunghezza massima possibile di set.

Esempio

// 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;
}

Esempio di output

Il seguente risultato è per x86.

The maximum possible length of the set is 1073741823.

Requisiti

Intestazione: <set>

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe set

set::max_size (Esempi della libreria di modelli standard)

Libreria di modelli standard