Compartilhar via


multiset::max_size

Retorna o comprimento máximo de multiset.

size_type max_size( ) const;

Valor de retorno

O comprimento máximo possível de multiset.

Exemplo

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

A saída de exemplo

A saída a seguir são para x.

The maximum possible length of the multiset is 1073741823.

Requisitos

Cabeçalho: <set>

namespace: STD

Consulte também

Referência

multiset Class

Standard Template Library