hash_multiset::max_size
[!NOTA]
Esta API está obsoleta.La alternativa es unordered_multiset Class.
Devuelve la longitud máxima de hash_multiset.
size_type max_size( ) const;
Valor devuelto
La longitud máxima posible de hash_multiset.
Comentarios
En Visual C++ .NET 2003, los miembros de los archivos de encabezado <hash_map> y <hash_set> ya no están en el espacio de nombres std, pero se han movido bastante al espacio de nombres stdext.Vea El espacio de nombres stdext para obtener más información.
Ejemplo
// 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;
}
Resultados del ejemplo
El resultado siguiente es para x86.
The maximum possible length of the hash_multiset is 1073741823.
Requisitos
Encabezado: <hash_set>
Stdext deEspacio de nombres: