Freigeben über


istreambuf_iterator::istreambuf_iterator

Erstellt ein istreambuf_iterator, das derzeit initialisiert wird, um Zeichen aus dem Eingabestream zu lesen.

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

Parameter

  • _Strbuf
    Der Eingabestreampuffer, an das istreambuf_iterator angefügt wird.

  • _Istr
    Der Eingabestream, an das istreambuf_iterator angefügt wird.

Hinweise

Der erste Konstruktor initialisiert den Eingabestreampufferzeiger mit _Strbuf. Der zweite Konstruktor initialisiert den Eingabestreampufferzeiger mit _Istr.rdbuf und anschließend 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 eine der für world! 

FakePre-9ab2ad50587d4f598db2d837c86856c0-8877791871da45bfb974d9374ba5ec1d

Anforderungen

Header: <Iterator>

Namespace: std

Siehe auch

Referenz

istreambuf_iterator-Klasse

Standardvorlagenbibliothek