Freigeben über


multimap::max_size

Gibt die maximale Länge der Multimaps zurück.

size_type max_size( ) const;

Rückgabewert

Die maximal mögliche Länge der Multimaps.

Beispiel

// 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;
}

Beispielausgabe

Die folgende Ausgabe ist für x86.

The maximum possible length of the multimap is 536870911.

Anforderungen

Header: <map>

Namespace: std

Siehe auch

Referenz

multimap Class

Standardvorlagenbibliothek