次の方法で共有


ostreambuf_iterator::operator=

演算子は、関連付けられたストリームのバッファーに文字が挿入されます。

ostreambuf_iterator<CharType, Traits>& operator=(
   CharType _Char
);

パラメーター

  • _Char
    ストリームのバッファーに挿入する文字。

戻り値

ストリームのバッファーに挿入される文字への参照。

解説

出力ストリームに出力反復子式の *i = 書き込みの x を 実行するために使用する代入演算子です。

使用例

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

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