list::crbegin
Zwraca iteratora const, pierwszy element na liście wycofanej adresowania.
const_reverse_iterator rbegin( ) const;
Wartość zwracana
Stała odwrócić iteratora dwukierunkowy adresowania pierwszy element w odwróconej list Class (lub adresowania, co było ostatni element w stałe list).
Uwagi
crbeginjest używana z odwróconą listy jako list::begin jest używana z list.
Zwracana wartość crbegin, obiekt listy nie można modyfikować.list::rbeginmoże służyć do iteracji listę wstecz.
Przykład
// list_crbegin.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1;
list <int>::const_reverse_iterator c1_crIter;
c1.push_back( 10 );
c1.push_back( 20 );
c1.push_back( 30 );
c1_crIter = c1.crbegin( );
cout << "The last element in the list is " << *c1_crIter << "." << endl;
}
Wymagania
Nagłówek: <list>
Obszar nazw: std