다음을 통해 공유


istream_iterator::operator->

있는 경우 멤버의 값을 반환 합니다.

const Type* operator->( ) const;

반환 값

있는 경우 멤버의 값입니다.

설명

i -> 동일 합니다 (*i).m

연산자를 반환 합니다. & **이.

예제

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

표준 템플릿 라이브러리