Udostępnij za pośrednictwem


list::max_size

Zwraca maksymalną długość listy.

size_type max_size( ) const;

Wartość zwracana

Maksymalna długość możliwe listy.

Przykład

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

Przykładowe dane wyjściowe

Jest następujący wynik dla x 86.

Maximum possible length of the list is 1073741823.

Wymagania

Nagłówek: <list>

Obszar nazw: std

Zobacz też

Informacje

list Class

Standardowa biblioteka szablonu