Sdílet prostřednictvím


set::max_size

Vrátí maximální délka sady.

size_type max_size( ) const;

Vrácená hodnota

Maximální možná délka sady.

Příklad

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

Vzorový výstup

Následující výstup je pro x 86.

The maximum possible length of the set is 1073741823.

Požadavky

Záhlaví: <set>

Obor názvů: std

Viz také

Referenční dokumentace

set Class

set::max_size (STL Samples)

Standardní šablona knihovny