Vector::reverse_iterator (STL/CLR)
Typ wstecznego iteratora kontrolowanych sekwencji numerów.
typedef T3 reverse_iterator;
Uwagi
Typ opisuje obiekt nieokreślonego typu T3 który może służyć jako odwrotne iteratora kontrolowanych sekwencji.
Przykład
// cliext_vector_reverse_iterator.cpp
// compile with: /clr
#include <cliext/vector>
int main()
{
cliext::vector<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::vector<wchar_t>::reverse_iterator rit = c1.rbegin();
for (; rit != c1.rend(); ++rit)
System::Console::Write(" {0}", *rit);
System::Console::WriteLine();
// alter first element and redisplay
rit = c1.rbegin();
*rit = L'x';
for (; rit != c1.rend(); ++rit)
System::Console::Write(" {0}", *rit);
System::Console::WriteLine();
return (0);
}
Wymagania
Nagłówek: < cliext/vector >
Obszar nazw: cliext
Zobacz też
Informacje
Vector::const_iterator (STL/CLR)