Partager via


ostreambuf_iterator::ostreambuf_iterator

Construit un ostreambuf_iterator qui est initialisé pour écrire des caractères au flux de sortie.

ostreambuf_iterator( 
   streambuf_type* _Strbuf 
) throw( ); 
ostreambuf_iterator( 
   ostream_type& _Ostr 
) throw( );

Paramètres

  • _Strbuf
    L'objet de streambuf utilisée pour initialiser le pointeur de mémoire tampon du flux.

  • _Ostr
    L'objet de stream sortant utilisé pour initialiser le pointeur de mémoire tampon du flux.

Notes

Le premier constructeur initialise le pointeur de mémoire tampon du flux avec _Strbuf.

Le deuxième constructeur initialise le pointeur de mémoire tampon du flux avec _Ostr.rdbuf. Le pointeur stocké ne doit pas être un pointeur null.

Exemple

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

int main( )
{
   using namespace std;

   // ostreambuf_iterator for stream cout
   ostreambuf_iterator<char> charOut ( cout );
   
   *charOut = 'O';
   charOut ++;
   *charOut  = 'U';
   charOut ++;   
   *charOut = 'T';
   cout << " are characters output individually." << endl;

   ostreambuf_iterator<char> strOut ( cout );
   string str = "These characters are being written to the output stream.\n ";
   copy ( str.begin ( ), str. end ( ), strOut );
}
  

Configuration requise

En-tête : <iterator>

Espace de noms : std

Voir aussi

Référence

ostreambuf_iterator, classe

Bibliothèque STL (Standard Template Library)