map::max_size
Retorna o comprimento máximo de mapa.
size_type max_size( ) const;
Valor de retorno
O comprimento máximo possível de mapa.
Exemplo
// map_max_size.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
map <int, int> m1;
map <int, int> :: size_type i;
i = m1.max_size( );
cout << "The maximum possible length "
<< "of the map is " << i << "."
<< endl << "(Magnitude is machine specific.)";
}
A saída de exemplo
A saída a seguir são para x.
The maximum possible length of the map is 536870911.
(Magnitude is machine specific.)
Requisitos
Cabeçalho: <map>
namespace: STD