次の方法で共有


istream_iterator::operator->

メンバーの値を返します (存在する場合)

const Type* operator->( ) const;

戻り値

メンバーの値 (ある場合)。

解説

i -> は (*i).m と同等です。

演算子は &**thisを返します。

使用例

// istream_iterator_operator_vm.cpp
// compile with: /EHsc
#include <iterator>
#include <iostream>
#include <complex>

using namespace std;

int main( )
{
   cout << "Enter complex numbers separated by spaces & then\n"
        << " a character pair ( try example: '(1,2) (3,4) (a,b)' ): ";

   // istream_iterator from stream cin
   istream_iterator< complex<double> > intRead ( cin );

   // End-of-stream iterator
   istream_iterator<complex<double> > EOFintRead;

   while ( intRead != EOFintRead )
   {
      cout << "Reading the real part: " << intRead ->real( ) << endl;
      cout << "Reading the imaginary part: " << intRead ->imag( ) << endl;
      ++intRead;
   }
   cout << endl;
}
   (1,2) (3,4) (a、b) 
   (1,2) (3,4) (a、b) 
& 空間と文字のペア (試行の例で区切られた複素数を入力します: 「 (1,2) (3,4) (a b) の) : (1,2) (3,4) (a、b) 実数部を読み取ります: 架空の部分を読み取ります: 1 実数部を読み取ります: 2 架空の部分を読み取ります: 3 4

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

istream_iterator Class

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