cpp/iterator/ostream iterator/operator++: differenze tra le versioni
Da cppreference.com.
< cpp | iterator | ostream iterator
(Translated from the English version using Google Translate) |
m (r2.7.4) (Bot: Modifico en:cpp/iterator/ostream iterator/operator arith) |
||
(2 revisioni intermedie di 2 utenti non mostrate) | |||
Riga 1: | Riga 1: | ||
{{cpp/iterator/inserter/operator++|ostream_iterator}} | {{cpp/iterator/inserter/operator++|ostream_iterator}} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
Versione attuale delle 08:41, 1 ago 2013
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
ostream_iterator& operator++(); |
||
ostream_iterator& operator++( int ); |
||
Non fa niente. Questi overload dell'operatore sono forniti per soddisfare le esigenze di
OutputIterator
. Rendono possibile per le espressioni *iter++=value e *++iter=value da utilizzare per l'uscita (inserto) un valore nel contenitore sottostante.Original:
Does nothing. These operator overloads are provided to satisfy the requirements of
OutputIterator
. They make it possible for the expressions *iter++=value and *++iter=value to be used to output (insert) a value into the underlying container.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Parametri
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Valore di ritorno
*this