Partager via


map::max_size

Retourne la longueur maximale du mappage.

size_type max_size( ) const;

Valeur de retour

La longueur maximale possible de mappage.

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 provient pour x86.

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

Configuration requise

en-tête : <map>

l'espace de noms : DST

Voir aussi

Référence

map Class

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

Modèles Standard