次の方法で共有


istream_iterator::operator*

逆参照する istream_iteratorにアドレス演算子は、型 [種類] に格納されたオブジェクトを返します。

const Type& operator*( ) const;

戻り値

型 **[種類]**に格納されたオブジェクト。

使用例

// istream_iterator_operator.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <algorithm>
#include <iostream>

int main( )
{
   using namespace std;

   cout << "Enter integers separated by spaces & then\n"
        << " a character ( try example: '2 4 6 8 a' ): ";

   // istream_iterator from stream cin
   istream_iterator<int> intRead ( cin );

   // End-of-stream iterator
   istream_iterator<int> EOFintRead;

   while ( intRead != EOFintRead )
   {
      cout << "Reading:  " << *intRead << endl;
      ++intRead;
   }
   cout << endl;
}
  2 4 6 8 a
  2 4 6 8 a
& 空間と文字 (試行の例で区切られた整数を入力します: 「a) : 2 4 6 8  読み取り: 2 4 6 8  読み取ります: 2 読み取ります: 4 読み取ります: 6 8

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

istream_iterator Class

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