Espacios de nombres
Variantes
Acciones

std::reverse_iterator::reverse_iterator

De cppreference.com
 
 
Biblioteca de iteradores
Conceptos de iteradores
Primitivas de iteradores
Conceptos de algoritmos y servicios
Conceptos invocables indirectos
Requerimientos comunes de algoritmos
Servicios
Adaptadores de iteradores
Iteradores de flujos
Puntos de personalización de iteradores
Operaciones de iteradores
(C++11)
(C++11)
Acceso a rangos
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
std::reverse_iterator
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
reverse_iterator::reverse_iterator
Terceros funciones
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
reverse_iterator();
(1)
explicit reverse_iterator( Iterator x );
(2)
template< class U >
reverse_iterator( const reverse_iterator<U>& other );
(3)
Construye un iterador nuevo adaptador .
Original:
Constructs a new iterator adaptor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Por defecto constructor. current es el valor inicializado. Esto sólo tiene sentido si las operaciones de un valor inicializado Iterator también hacer sentido .
Original:
Default constructor. current is value-initialized. This makes sense only if operations on an value-initialized Iterator make also sense.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
current se inicializa con x .
Original:
current is initialized with x.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Copiar constructor. El iterador subyacente se inicializa con la de other .
Original:
Copy constructor. The underlying iterator is initialized with that of other.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Parámetros

x -
iterador para adaptarse
Original:
iterator to adapt
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
other -
adaptador iterador para copiar
Original:
iterator adaptor to copy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ejemplo

[editar] Ver también

asigna otro iterador
Original:
assigns another iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función miembro pública) [editar]