Condividi tramite


map::max_size

Restituisce la lunghezza massima della mappa.

size_type max_size( ) const;

Valore restituito

La lunghezza massima possibile mappa.

Esempio

// map_max_size.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   map <int, int> m1;
   map <int, int> :: size_type i;

   i = m1.max_size( );
   cout << "The maximum possible length "
        << "of the map is " << i << "."
        << endl << "(Magnitude is machine specific.)";
}

Esempio di output

Il seguente risultato è per x86.

The maximum possible length of the map is 536870911.
(Magnitude is machine specific.)

Requisiti

Intestazione: <map>

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe map

map::max_size, map::clear, map::erase e map::size

Libreria di modelli standard