istream_iterator::operator->
Vrátí hodnotu člena, pokud existuje.
const Type* operator->( ) const;
Vrácená hodnota
Hodnota člena, pokud existuje.
Poznámky
i -> je ekvivalentní (*i).m
Vrátí operátor &** to.
Příklad
// 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) komplexních čísel oddělených mezerami zadejte & pak dvojice znaků (zkuste příklad: "(1,2) (3,4) (a, b)"): (1,2) (3,4) (a, b) Reálná část čtení: 1 Čtení imaginární část: 2 Čtení reálná část: 3 Imaginární část čtení: 4
Požadavky
Hlavička: <iterátor>
Obor názvů: std