Partager via


ostream_iterator::operator++

Un opérateur d'incrémentation non fonctionnel qui retourne ostream_iterator au même objet il a traité avant que l'opération a été appelée.

ostream_iterator<Type, CharType, Traits>& operator++( );
ostream_iterator<Type, CharType, Traits> operator++( int );

Valeur de retour

Une référence à ostream_iterator.

Notes

Ces opérateurs membres elles retournent *this.

Exemple

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

int main( )
{
   using namespace std;

   // ostream_iterator for stream cout
   // with new line delimiter
   ostream_iterator<int> intOut ( cout , "\n" );

   // standard iterator interface for writing
   // elements to the output stream
   cout << "Elements written to output stream:" << endl;
   *intOut = 10;
   intOut++;      // No effect on iterator position
   *intOut = 20;
   *intOut = 30;
}
  

Configuration requise

en-tête : <iterator>

l'espace de noms : DST

Voir aussi

Référence

ostream_iterator Class

Modèles Standard