istreambuf_iterator::istreambuf_iterator
Konstrukce istreambuf_iterator znaky číst ze vstupního datového proudu je inicializován.
istreambuf_iterator(
streambuf_type* _Strbuf = 0
) throw( );
istreambuf_iterator(
istream_type& _Istr
) throw( );
Parametry
_Strbuf
Vyrovnávací paměť vstupní proud, na který istreambuf_iterator je připojeno._Istr
Vstupní proud, na který istreambuf_iterator je připojeno.
Poznámky
První konstruktor inicializuje ukazatel vstupní vyrovnávací paměti datového proudu s _Strbuf.Druhý konstruktor inicializuje ukazatel vstupní vyrovnávací paměti datového proudu s _Istr.rdbufa nakonec pokusí extrahovat a uložit objekt typu CharType.
Příklad
// 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 , ' ' , '-' );
}
O jaké světa!
Oh what a world! (Zkuste Příklad: "Oh co world!", pak Enter klíč vložit do výstupu, & ukončení pomocí kombinace kláves ctrl + Z Enter): O jaké světa! O co světa! ^ Z
Požadavky
Záhlaví: <iterator>
Obor názvů: std