ostream_iterator::operator++
Um operador nonfunctional de incremento que retorna ostream_iterator ao mesmo objeto antes que ele indica a operação esteve chamada.
ostream_iterator<Type, CharType, Traits>& operator++( );
ostream_iterator<Type, CharType, Traits> operator++( int );
Valor de retorno
Uma referência a ostream_iterator.
Comentários
Esses operadores ambos retornam *thisde membro.
Exemplo
// ostream_iterator_op_incr.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
// ostream_iterator for stream cout
// with new line delimiter
ostream_iterator<int> intOut ( cout , "\n" );
// standard iterator interface for writing
// elements to the output stream
cout << "Elements written to output stream:" << endl;
*intOut = 10;
intOut++; // No effect on iterator position
*intOut = 20;
*intOut = 30;
}
Requisitos
Cabeçalho: <iterator>
Namespace: std