Compartilhar via


istreambuf_iterator::istreambuf_iterator

Constrói um istreambuf_iterator que é inicializada 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 livre de entrada com _Strbuf.O segundo construtor inicializa o ponteiro de buffer livre de entrada com _Istr.rdbufe em seguida, tentar extrair e eventualmente 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 o mundo! 
  Oh que o mundo! 
(Tente o exemplo: “Oh que o mundo!” em uma tecla ENTER para inserir na saída, & para usar uma combinação de tecla ENTER CTRL - z para sair): Oh que o mundo! Oh-que-um- world! ^Z

Requisitos

Cabeçalho: <iterator>

namespace: STD

Consulte também

Referência

istreambuf_iterator Class

Standard Template Library