Udostępnij za pośrednictwem


hash_multimap::max_size

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multimap Class.

Zwraca maksymalną długość hash_multimap.

size_type max_size( ) const;

Wartość zwracana

Maksymalna długość możliwe hash_multimap.

Uwagi

W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.

Przykład

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

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

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

Przykładowe dane wyjściowe

Następujące dane wyjściowe są dla architektury x 86.

The maximum possible length of the hash_multimap is 536870911.

Wymagania

Nagłówek: <hash_map>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_multimap Class

Standardowa biblioteka szablonu