共用方式為


ostream_iterator::operator*

取值運算子用於實作輸出 Iterator 運算式*ii = x。

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

傳回值

ostream_iterator的參考。

備註

ostream_iterator 必須滿足的輸出 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

標準樣板程式庫