vector::cend
Vrátí iterační minulosti konci.
const_iterator cend( ) const;
Vrácená hodnota
Const iterační minulosti konci pro vector Class.If the vector is empty, vector::cend() == vector::cbegin().
Poznámky
Vrátí hodnotu, která se cend (vhodně snížena), vector objekt nelze upravit.
Příklad
// vector_cend.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
vector <int>::const_iterator v1_Iter;
v1.push_back( 1 );
v1.push_back( 2 );
for ( v1_Iter = v1.cbegin( ) ; v1_Iter != v1.cend( ) ; v1_Iter++ )
cout << *v1_Iter << endl;
}
Požadavky
Záhlaví: <vector>
Obor názvů: std