Partager via


istream_iterator::operator*

L'opérateur d'annulation de référence retourne l'objet stocké du type Type traité par istream_iterator.

const Type& operator*( ) const;

Valeur de retour

L'objet stocké du type Type.

Exemple

// istream_iterator_operator.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <algorithm>
#include <iostream>

int main( )
{
   using namespace std;

   cout << "Enter integers separated by spaces & then\n"
        << " a character ( try example: '2 4 6 8 a' ): ";

   // istream_iterator from stream cin
   istream_iterator<int> intRead ( cin );

   // End-of-stream iterator
   istream_iterator<int> EOFintRead;

   while ( intRead != EOFintRead )
   {
      cout << "Reading:  " << *intRead << endl;
      ++intRead;
   }
   cout << endl;
}
  2 4 6 8 a
  2 4 6 8 a
Entrez les entiers séparés par des espaces puis un caractère (exemple de test : « 2 4 6 8 a ") : 2 4 6 8 une lecture : 2 Lisant : 4 Lisant : 6 Lisant : 8

Configuration requise

en-tête : <iterator>

l'espace de noms : DST

Voir aussi

Référence

istream_iterator Class

Modèles Standard