ostream_iterator::operator=

赋值运算符用于实现 output_iterator 表达式*编写的i = x 到输出流。

ostream_iterator<Type, CharType, Traits>& operator=(
   const Type& _Val
);

参数

  • _Val
    类型要插入的对象 Type 的值输出到流。

返回值

_Val 运算符插入到输出流与对象,后跟指定分隔符在 ostream_iterator 构造函数 (如果有),然后返回对 ostream_iterator的引用。

备注

ostream_iterator 迭代器的输出必须满足的要求只需要表达式*ii = t 无效且独立添加有关运算符或 operator=。 此成员运算符返回 *this。

示例

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

请参见

参考

ostream_iterator 类

标准模板库