istreambuf_iterator::operator*
L'opérateur d'annulation de référence retourne le caractère suivant dans le flux de données.
CharType operator*( ) const;
Valeur de retour
Le caractère suivant dans le flux de données.
Exemple
// istreambuf_iterator_operator_deref.cpp
// compile with: /EHsc
#include <iterator>
#include <iostream>
int main( )
{
using namespace std;
cout << "Type string of characters & enter to output it,\n"
<< " with stream buffer iterators,(try: 'I'll be back.')\n"
<< " repeat as many times as desired,\n"
<< " then keystroke ctrl-Z Enter to exit program: ";
istreambuf_iterator<char> inpos ( cin );
istreambuf_iterator<char> endpos;
ostreambuf_iterator<char> outpos ( cout );
while ( inpos != endpos )
{
*outpos = *inpos; //Put value of outpos equal to inpos
++inpos;
++outpos;
}
}
Je reviendrai.
FakePre-312e9972609c4a65ae056c2303817718-1e30bc7d30674529946c2458e2a376c9
Configuration requise
En-tête : <iterator>
Espace de noms : std