Condividi tramite


hash_map::max_size

[!NOTA]

Questo API è obsoleto.L'alternativa consiste unordered_map Class.

Restituisce la lunghezza massima di hash_map.

size_type max_size( ) const;

Valore restituito

La lunghezza massima possibile di hash_map.

Note

In Visual C++ .NET 2003, i membri dei file di intestazione <hash_set> e <hash_map> non sono più nello spazio dei nomi di deviazione standard, ma sono stati spostati nello spazio dei nomi di stdext.Per ulteriori informazioni, vedere lo spazio dei nomi stdext.

Esempio

// hash_map_max_size.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_map <int, int> hm1;
   hash_map <int, int> :: size_type i;

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

Esempio di output

L'output seguente viene per x86.

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

Requisiti

intestazione: <hash_map>

Stdext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_map Class

Libreria di modelli standard