Diferencia entre revisiones de «cpp/iterator/back insert iterator/operator++»
De cppreference.com
< cpp | iterator | back insert iterator
(Translated from the English version using Google Translate) |
m (1 revisión: Translate from the English version) |
Revisión de 10:29 25 oct 2012
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
back_insert_iterator& operator++(); |
||
back_insert_iterator& operator++( int ); |
||
No hace nada. Estas sobrecargas de operador se proporcionan para satisfacer los requisitos de
OutputIterator
. Ellos hacen posible que las expresiones *iter++=value y *++iter=value que se utilizará para la producción (insertar) un valor en el contenedor subyacente .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.
Parámetros
(Ninguno)
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.
Valor de retorno
*this