Udostępnij za pośrednictwem


multiset::max_size

Zwraca maksymalną długość zestaw wielokrotny.

size_type max_size( ) const;

Wartość zwracana

Maksymalna długość możliwe zestaw wielokrotny.

Przykład

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

int main( )
{
   using namespace std;   
   multiset <int> ms1;
   multiset <int>::size_type i;

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

Przykładowe dane wyjściowe

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

The maximum possible length of the multiset is 1073741823.

Wymagania

Nagłówek: <set>

Przestrzeń nazw: std

Zobacz też

Informacje

multiset — Klasa

Standardowa biblioteka szablonów