list::max_size
Vrátí maximální délku seznamu.
size_type max_size( ) const;
Vrácená hodnota
Maximální možná délka seznamu.
Příklad
// 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;
}
Výstup ukázky
Následující výstup je pro x86.
Maximum possible length of the list is 1073741823.
Požadavky
Záhlaví: <seznam>
Obor názvů: std