次の方法で共有


ostreambuf_iterator::operator*

出力反復子式の *i = x を実行するために使用する、機能的な逆参照する演算子 。

ostreambuf_iterator<CharType, Traits>& operator*( );

戻り値

ostreambuf の反復子オブジェクト。

解説

この演算子はバッファーをストリームに挿入する文字を出力する出力反復子式の *i x = だけで機能します。ostreambuf の反復子に適用すると、反復子を返します; *iter は、iter

使用例

// ostreambuf_iterator_op_deref.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

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