Udostępnij za pośrednictwem


istream_iterator::operator->

Zwraca wartość elementu członkowskiego, ewentualne.

const Type* operator->( ) const;

Wartość zwracana

Wartość elementu członkowskiego, jeśli istnieje.

Uwagi

ja -> jest równoważne (*i).m

Operator zwraca &** to.

Przykład

// 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) (, b)
  (1,2) (3.4) (, b)
wprowadź liczby zespolonej oddzielonych spacjami & następnie
 pary znaków (spróbuj na przykład: "(1,2) (3.4) (, b)"): (1,2) (3.4) (, b)
Czytanie część rzeczywista: 1
Odczytywanie części urojonej: 2
Czytanie część rzeczywista: 3
Odczytywanie części urojonej: 4

Wymagania

Nagłówek: <iterator>

Przestrzeń nazw: std

Zobacz też

Informacje

istream_iterator — Klasa

Standardowa biblioteka szablonów