Freigeben über


istreambuf_iterator::istreambuf_iterator

Erstellt ein istreambuf_iterator, das initialisiert wird, um Zeichen im Eingabestream zu lesen.

istreambuf_iterator(
   streambuf_type* _Strbuf = 0
) throw( );
istreambuf_iterator(
   istream_type& _Istr
) throw( );

Parameter

  • _Strbuf
    Der Eingabestreampuffer, zu dem istreambuf_iterator angefügt wird.

  • _Istr
    Der Eingabestream, zu dem istreambuf_iterator angefügt wird.

Hinweise

Der erste Konstruktor initialisiert den Eingabestreampufferzeiger mit _Strbuf.Der zweite Konstruktor initialisiert den Eingabestreampufferzeiger mit _Istr.rdbuf und dann versucht schließlich, ein Objekt des Typs CharType zu extrahieren und zu speichern.

Beispiel

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

int main( )
{
   using namespace std;

   // Following declarations will not compile:
   istreambuf_iterator<char>::istream_type &istrm = cin;
   istreambuf_iterator<char>::streambuf_type *strmbf = cin.rdbuf( );

   cout << "(Try the example: 'Oh what a world!'\n"
      << " then an Enter key to insert into the output,\n"
      << " & use a ctrl-Z Enter key combination to exit): ";
   istreambuf_iterator<char> charReadIn ( cin );
   ostreambuf_iterator<char> charOut ( cout );

   // Used in conjunction with replace_copy algorithm
   // to insert into output stream and replace spaces
   // with hyphen-separators
   replace_copy ( charReadIn , istreambuf_iterator<char>( ),
      charOut , ' ' , '-' );
}
  Oh what a world!
  Oh what a world!
 (Versuchen Sie das Beispiel: "Oh what a world!" dann eine die EINGABETASTE, um in die Ausgabe einzufügen, &verwenden Sie die Tastenkombination STRG+Z-EINGABE, um zu beenden): Oh what a world!! Oh-what-a-world! ^Z

Anforderungen

Header: <iterator>

Namespace: std

Siehe auch

Referenz

istreambuf_iterator Class

Standardvorlagenbibliothek