Udostępnij za pośrednictwem


set::max_size

Zwraca maksymalną długość zestawu.

size_type max_size( ) const;

Wartość zwracana

Maksymalna długość możliwe zestawu.

Przykład

// set_max_size.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   set <int> s1;
   set <int>::size_type i;

   i = s1.max_size( );   
   cout << "The maximum possible length "
        << "of the set is " << i << "." << endl;
}

Przykładowe dane wyjściowe

Poniższe dane wyjściowe odnoszą się do x86.

The maximum possible length of the set is 1073741823.

Wymagania

Nagłówek: <set>

Przestrzeń nazw: std

Zobacz też

Informacje

set — Klasa

set::max_size (STL — Przykłady)

Standardowa biblioteka szablonów