istream_iterator::operator->
Zwraca wartość elementu członkowskiego, ewentualne.
const Type* operator->( ) const;
Wartość zwracana
Wartość elementu członkowskiego, ewentualne.
Uwagi
i -> 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) (a, b)
(1,2) (3,4) (a, b) wprowadzania liczb zespolonych, oddzielonych spacjami & następnie parę znaków (spróbuj na przykład: "(1,2) (3,4) (a, b)"): (1,2) (3,4) (a, b) czytania część rzeczywista: 1 odczytywanie części urojonej: 2 część rzeczywista czytania: odczytywanie części urojonej 3: 4
Wymagania
Nagłówek: <iterator>
Obszar nazw: std