vector::front
Vrátí odkaz na prvním elementem v vektor.
reference front( ); const_reference front( ) const;
Vrácená hodnota
Odkaz na prvním elementem v objektu vector.Pokud vektor je prázdný, vrácení není definováno.
Poznámky
Pokud je vrácená hodnota front přiřazena k const_reference, objekt vektoru nelze upravit.Pokud návratovou hodnotu front je přiřazena k referenční, lze upravit objekt vektoru.
Při kompilaci s _SECURE_SCL 1, pokud pokusu o přístup k element prázdný vektoru dojde chybě v běhu programu.Další informace naleznete v tématu Checked – iterátory.
Příklad
// 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}
Výstup
The first integer of v1 is 10
Now, the first integer of v1 is 11
Požadavky
Záhlaví: < vektoru >
Obor názvů: std