Condividi tramite


vector::max_size

Restituisce la lunghezza massima del vettore.

size_type max_size( ) const;

Valore restituito

La lunghezza massima possibile il vettore.

Esempio

// vector_max_size.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;   
   vector <int> v1;
   vector <int>::size_type i;

   i = v1.max_size( );   
   cout << "The maximum possible length of the vector is " << i << "." << endl;
}

Esempio di output

The maximum possible length of the vector is 1073741823.

Requisiti

intestazione: <vector>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

vector Class

Libreria di modelli standard