hash_map::max_size
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_map – třída.
Vrátí maximální délku hash_map.
size_type max_size( ) const;
Vrácená hodnota
Maximální možná délka hash_map.
Poznámky
V aplikaci Visual C++ .NET 2003, členové hlavičkových souborů tříd <hash_map> a <hash_set> již nejsou v oboru názvů std, ale byly přesunuty do oboru názvů stdext.Další informace naleznete v tématu Obor názvů stdext.
Příklad
// 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.)";
}
Výstup ukázky
Následující výstup je pro x86.
The maximum possible length of the hash_map is 536870911.
(Magnitude is machine specific.)
Požadavky
Hlavička: <hash_map>
Obor názvů: stdext