deque::begin
Vrátí iterátoru adresování první prvek deque.
const_iterator begin( ) const;
iterator begin( );
Vrácená hodnota
První prvek deque nebo umístění následných prázdné deque adresování iterační náhodný přístup.
Poznámky
Pokud vrácenou hodnotu začít je přiřazen const_iterator, deque objekt nelze upravit.Pokud vrácenou hodnotu začít je přiřazen iterační, deque objektu lze změnit.
Příklad
// deque_begin.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>
int main( )
{
using namespace std;
deque <int> c1;
deque <int>::iterator c1_Iter;
deque <int>::const_iterator c1_cIter;
c1.push_back( 1 );
c1.push_back( 2 );
c1_Iter = c1.begin( );
cout << "The first element of c1 is " << *c1_Iter << endl;
*c1_Iter = 20;
c1_Iter = c1.begin( );
cout << "The first element of c1 is now " << *c1_Iter << endl;
// The following line would be an error because iterator is const
// *c1_cIter = 200;
}
Požadavky
Záhlaví: <deque>
Obor názvů: std