다음을 통해 공유


istreambuf_iterator::istreambuf_iterator

입력된 스트림에서 문자를 읽을 수 초기화 하는 istreambuf_iterator를 생성 합니다.

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

매개 변수

  • _Strbuf
    입력된 스트림 버퍼에 있는 istreambuf_iterator 연결 되는.

  • _Istr
    입력된 스트림에 istreambuf_iterator 연결 되는.

설명

입력된 스트림 버퍼 포인터를 첫 번째 생성자 초기화 _Strbuf.두 번째 생성자는 입력된 스트림 버퍼 포인터를 초기화 _Istr.rdbuf, 및 다음 최종적으로 추출 하 고 저장할 개체 유형을 시도 CharType.

예제

// 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!
(예제: '는 전 세계 믿지!' 다음에 Enter 키를 출력에 삽입할 & 끝내려면 ctrl + Z Enter 키 조합 하 여 사용): 오 무엇 세계! 오-가정-a-세계! ^ Z

요구 사항

헤더: <iterator>

네임 스페이스: std

참고 항목

참조

istreambuf_iterator Class

표준 템플릿 라이브러리