hash_multiset::max_size
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_multiset Class.
Restituisce la lunghezza massima di hash_multiset.
size_type max_size( ) const;
Valore restituito
La lunghezza massima possibile di hash_multiset.
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_multiset_max_size.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hms1;
hash_multiset <int>::size_type i;
i = hms1.max_size( );
cout << "The maximum possible length "
<< "of the hash_multiset is " << i << "." << endl;
}
Esempio di output
L'output seguente viene per x86.
The maximum possible length of the hash_multiset is 1073741823.
Requisiti
intestazione: <hash_set>
Stdext diSpazio dei nomi: