<div class="t-tr-text">C + +: concetti<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">C++ concepts:</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div> Iterator

Da cppreference.com.
< cpp‎ | concept

 
 
C + + concetti
Di base
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.
Elementi contenitori
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.
Numeri casuali
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.
Concorrenza
Original:
Concurrency
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Mutex(C++11)
TimedMutex(C++11)
Altro
Original:
Other
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Il concetto Iterator descrive tipi che possono essere utilizzati per identificare e attraversare gli elementi di un contenitore.
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 è il concetto di base utilizzato da altri tipi di iteratori: InputIterator, OutputIterator, ForwardIterator, BidirectionalIterator e RandomAccessIterator. Iteratori può essere pensato come un'astrazione di puntatori.
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.

[modifica]Requisiti

Per It tipo ad essere un Iterator, in aggiunta alle altre, le seguenti condizioni devono essere soddisfatti per un i oggetto di questo 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.
ExpressionReturnPrecondition
*ireference[1]i is dereferenceable [2]
++iIt&

[modifica]Vedi anche

[modifica]Note

  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.
close