multimap::max_size
Devuelve la longitud máxima de multimap.
size_type max_size( ) const;
Valor devuelto
La longitud máxima posible de multimap.
Ejemplo
// multimap_max_size.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
multimap <int, int> m1;
multimap <int, int> :: size_type i;
i = m1.max_size( );
cout << "The maximum possible length "
<< "of the multimap is " << i << "." << endl;
}
Resultados del ejemplo
El siguiente resultado corresponde a x86.
The maximum possible length of the multimap is 536870911.
Requisitos
Encabezado: <map>
Espacio de nombres: std