Partager via


map::max_size

Retourne la longueur maximale du mappage.

size_type max_size( ) const;

Valeur de retour

La longueur maximale de la carte.

Exemple

// 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.)";
}

Résultat de l'exemple

La sortie suivante est pour x86.

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

Configuration requise

En-tête : <mappage>

Espace de noms : std

Voir aussi

Référence

map, classe

map::max_size, map::clear, map::erase et map::size

Bibliothèque STL (Standard Template Library)