map::generic_reverse_iterator (STL/CLR)
Il tipo di iteratore inverso per l'utilizzo con l'interfaccia generica per il contenitore.
typedef Microsoft::VisualC::StlClr::Generic::
ReverseRandomAccessIterator<generic_value>
generic_reverse_iterator;
Note
Il tipo viene descritto un iteratore inverso generico che può essere utilizzato con l'interfaccia generica per questa classe di contenitori del modello.
Esempio
// cliext_map_generic_reverse_iterator.cpp
// compile with: /clr
#include <cliext/map>
typedef cliext::map<wchar_t, int> Mymap;
int main()
{
Mymap c1;
c1.insert(Mymap::make_value(L'a', 1));
c1.insert(Mymap::make_value(L'b', 2));
c1.insert(Mymap::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Mymap::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct a generic container
Mymap::generic_container^ gc1 = %c1;
for each (Mymap::value_type elem in gc1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// get an element and display it
Mymap::generic_reverse_iterator gcit = gc1->rbegin();
Mymap::generic_value gcval = *gcit;
System::Console::WriteLine(" [{0} {1}]", gcval->first, gcval->second);
return (0);
}
Requisiti
intestazione: <cliext/mapping>
Cliext diSpazio dei nomi: