Sdílet prostřednictvím


ostream_iterator::operator++

Nefunkční přírůstek operátor, který vrací ostream_iterator na stejný objekt určeno dříve, než byla volána operace.

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

Vrácená hodnota

Odkaz na ostream_iterator.

Poznámky

Vrácení těchto členských hospodářských subjektů obou * to.

Příklad

// 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;
}
  

Požadavky

Hlavička: <iterátor>

Obor názvů: std

Viz také

Referenční dokumentace

ostream_iterator – třída

Standardní knihovna šablon