istream_iterator::operator++
Extrait un objet incrémenté du flux d'entrée ou copier l'objet avant de l'incrément et retourne la copie.
istream_iterator<Type, CharType, Traits, Distance>& operator++( );
istream_iterator<Type, CharType, Traits, Distance> operator++( int );
Valeur de retour
Le premier opérateur membre retourne une référence à l'objet incrémenté du type Type extrait du flux d'entrée et la deuxième fonction membre retourne une copie de l'objet.
Exemple
// istream_iterator_operator_incr.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 4 6 a2
FakePre-16b5701235f64db48468254fe976643d-a560a6b74c0c4d88bb94d8e6e691d236
Configuration requise
En-tête : <iterator>
Espace de noms : std