ostream_iterator::operator++
傳回 ostream_iterator 至相同的物件執行無作用的遞增運算子解決,在作業之前呼叫。
ostream_iterator<Type, CharType, Traits>& operator++( );
ostream_iterator<Type, CharType, Traits> operator++( int );
傳回值
在 ostream_iterator的參考。
備註
這些成員這兩個運算子會傳回 *this。
範例
// 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;
}
需求
標題: <iterator>
命名空間: std