list::max_size

Retorna o tamanho máximo de uma lista.

size_type max_size( ) const;

Valor de retorno

O comprimento máximo possível da lista.

Exemplo

// list_max_size.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::size_type i;

   i = c1.max_size( );
   cout << "Maximum possible length of the list is " << i << "." << endl;
}

A saída de exemplo

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

Maximum possible length of the list is 1073741823.

Requisitos

Cabeçalho: <list>

namespace: STD

Consulte também

Referência

list Class

Standard Template Library