Compartilhar via


istreambuf_iterator::istreambuf_iterator

Constrói um istreambuf_iterator que esteja inicializado para ler caracteres de fluxo de entrada.

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

Parâmetros

  • _Strbuf
    O buffer de fluxo de entrada a istreambuf_iterator que está sendo anexado.

  • _Istr
    O fluxo de entrada a istreambuf_iterator que está sendo anexado.

Comentários

O primeiro construtor inicializa o ponteiro de - buffer de entrada com _Strbuf. O segundo construtor inicializa o ponteiro de - buffer de entrada com _Istr.rdbuf, e depois tenta se houver extrair e armazenar um objeto do tipo CharType.

Exemplo

// 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 que world! 

FakePre-32cb4e71e9e348c392cdc883751a40fe-7f9698ac9ea448e5a5ca015dc594c3d5

Requisitos

Cabeçalho: <iterator>

Namespace: std

Consulte também

Referência

Classe istreambuf_iterator

Biblioteca de Modelos Padrão