Aracılığıyla paylaş


map::max_size

Haritanın en fazla uzunluğunu döndürür.

size_type max_size( ) const;

Dönüş Değeri

En büyük olası uzunluğunu haritası.

Örnek

// 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.)";
}

Örnek Çıktı

X 86 için aşağıdaki çıktıdır.

The maximum possible length of the map is 536870911.
(Magnitude is machine specific.)

Gereksinimler

Başlık: <map>

Namespace: std

Ayrıca bkz.

Başvuru

map Class

map::max_size, map::clear, map::erase, ve map::size

Standart Şablon Kütüphanesi