次の方法で共有


ostreambuf_iterator::operator++

同じ文字に ostream の反復子を返す、機能面以外のインクリメント演算子は、操作が呼び出される前にアドレス。

ostreambuf_iterator<CharType, Traits>& operator++( );
ostreambuf_iterator<CharType, Traits>& operator++( int );

戻り値

最初にアドレス文字または ostreambuf_iterator<CharTypeTraits> に変換可能な実装で定義されているオブジェクトへの参照。

解説

演算子が出力反復子式の *i = x を実行するために使用されます。

使用例

// 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';   
}
  

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

ostreambuf_iterator Class

標準テンプレート ライブラリ