hash_set::max_size
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_set Class.
Zwraca maksymalną długość hash_set.
size_type max_size( ) const;
Wartość zwracana
Maksymalna długość możliwe hash_set.
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_set_max_size.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1;
hash_set <int>::size_type i;
i = hs1.max_size( );
cout << "The maximum possible length "
<< "of the hash_set 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_set is 1073741823.
Wymagania
Nagłówek: <hash_set>
Przestrzeń nazw: stdext