Espaços nominais
Variantes
Acções

std::back_insert_iterator::operator*

Da cppreference.com

 
 
Biblioteca Iterator
Primitivas iterador
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Adaptadores de iterador
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iteradores fluxo
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Operações iterador
Original:
Iterator operations
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)
Variar de acesso
Original:
Range access
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)
 
std::back_insert_iterator
Funções de membro
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.
back_insert_iterator::back_insert_iterator
back_insert_iterator::operator=
back_insert_iterator::operator*
back_insert_iterator::operator++
back_insert_iterator::operator++(int)
 
back_insert_iterator& operator*();
Não faz nada, essa função de membro é fornecido para satisfazer as exigências de OutputIterator.
Original:
Does nothing, this member function is provided to satisfy the requirements of OutputIterator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Ele retorna o iterador próprio, o que torna possível a utilização de um código como *iter = value de saída (inserção), o valor para o recipiente subjacente.
Original:
It returns the iterator itself, which makes it possible to use code such as *iter = value to output (insert) the 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.

[editar]Parâmetros

(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

*this

close