vector::front
Restituisce un riferimento al primo elemento di un vettore.
reference front( ); const_reference front( ) const;
Valore restituito
Riferimento al primo elemento dell'oggetto vettore. Se il vettore è vuoto, il valore restituito non è definito.
Note
Se il valore restituito front viene assegnato a un const_reference, l'oggetto vettore non può essere modificato. Se il valore restituito di front viene assegnato a un oggetto reference, l'oggetto vettore può essere modificato.
Durante la compilazione con _SECURE_SCL 1, si verificherà un errore di runtime se si prova ad accedere a un elemento in un vettore vuoto. Per altre informazioni, vedere Iteratori verificati.
Esempio
// vector_front.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
using namespace std;
int main( )
{
vector <int> vec;
vec.push_back(10);
vec.push_back(20);
int& i = vec.front();
const int& ci = vec.front();
cout << "The value of vec[0] is " << i << endl;
// front() returns a reference, not an iterator
// by incrementing i, we change the value of the first element
i++;
cout << "Now, the value of vec[0] is " << i << endl;
// ci++; compiler error because ci is const}
Output
The first integer of v1 is 10
Now, the first integer of v1 is 11
Requisiti
Intestazione: <vector>
Spazio dei nomi: std