ostreambuf_iterator::operator++
Nefunkční přírůstek operátor, který vrátí iterace ostream stejný znak, který je určena před operací byla volána.
ostreambuf_iterator<CharType, Traits>& operator++( );
ostreambuf_iterator<CharType, Traits>& operator++( int );
Vrácená hodnota
Odkaz na znak původně řešen nebo definované implementací objektu, který je převést na ostreambuf_iterator<CharType, znaky>.
Poznámky
Operátor slouží k implementaci iterační výraz výstup *i = x.
Příklad
// ostreambuf_iterator_op_incr.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
// ostreambuf_iterator for stream cout
// with new line delimiter
ostreambuf_iterator<char> charOutBuf ( cout );
// Standard iterator interface for writing
// elements to the output stream
cout << "Elements written to output stream:" << endl;
*charOutBuf = 'O';
charOutBuf++; // No effect on iterator position
*charOutBuf = 'U';
*charOutBuf = 'T';
}
Požadavky
Hlavička: <iterátor>
Obor názvů: std