close
Espacios de nombres
Variantes

Conceptos C++: Iterator

De cppreference.com
 
 
C + + conceptos
Básica
Original:
Basic
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Biblioteca-Wide
Original:
Library-Wide
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Container
Original:
Container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Elementos contenedores
Original:
Container Elements
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iterator
Original:
Iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Números aleatorios
Original:
Random Numbers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Concurrencia
Original:
Concurrency
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Otros
Original:
Other
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
El concepto Iterator describe los tipos que se pueden utilizar para identificar y atravesar los elementos de un contenedor .
Original:
The Iterator concept describes types that can be used to identify and traverse the elements of a container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iterator es el concepto base utilizada por otros tipos de iteradores: InputIterator, OutputIterator, ForwardIterator, BidirectionalIterator y RandomAccessIterator. Los iteradores puede ser pensado como una abstracción de punteros .
Original:
Iterator is the base concept used by other iterator types: InputIterator, OutputIterator, ForwardIterator, BidirectionalIterator, and RandomAccessIterator. Iterators can be thought of as an abstraction of pointers.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Requisitos

Para It tipo sea un Iterator, además de los otros requisitos, las siguientes condiciones deben cumplirse para que un i objeto de tal tipo:
Original:
For type It to be an Iterator, in addition to the other requirements, the following conditions have to be satisfied for an object i of such type:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Expression Return Precondition
*i reference[1] i is dereferenceable [2]
++i It&

Ver también

Notas al pie

  1. As defined in iterator_traits
  2. It's a valid iterator pointing to an existing element
Original:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.