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 类

标准模板库