multimap::max_size
Restituisce la lunghezza massima di multimap.
size_type max_size( ) const;
Valore restituito
La lunghezza massima possibile di multimap.
Esempio
// 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;
}
Esempio di output
L'output seguente viene per x86.
The maximum possible length of the multimap is 536870911.
Requisiti
intestazione: <map>
Spazio dei nomi: deviazione standard