list::const_reverse_iterator (STL/CLR)
Typ stałej iteratora wstecznego kontrolowanych sekwencji numerów.
typedef T4 const_reverse_iterator;
Uwagi
Typ opisuje obiekt nieokreślonego typu T4 który może służyć jako stała iteratora odwrotnej w kontrolowanej sekwencji.
Przykład
// cliext_list_const_reverse_iterator.cpp
// compile with: /clr
#include <cliext/list>
int main()
{
cliext::list<wchar_t> c1;
c1.push_back(L'a');
c1.push_back(L'b');
c1.push_back(L'c');
// display contents " a b c" reversed
cliext::list<wchar_t>::const_reverse_iterator crit = c1.rbegin();
cliext::list<wchar_t>::const_reverse_iterator crend = c1.rend();
for (; crit != crend; ++crit)
System::Console::Write(" {0}", *crit);
System::Console::WriteLine();
return (0);
}
Wymagania
Nagłówek: < w cliext na liście >
Obszar nazw: cliext