次の方法で共有


ostream_iterator::operator*

出力反復子式の *ii = x を実行するために使用する演算子を逆参照します。

ostream_iterator<Type, CharType, Traits>& operator*( );

戻り値

ostream_iteratorへの参照。

解説

満たしている必要が ostream_iterator 出力反復子の要件は、式の *ii = t のみ有効で、独自の言いません operatoroperator= に関して何も必要です。この実装のメンバー演算子は *thisを返します。

使用例

// ostream_iterator_op_deref.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 Class

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