다음을 통해 공유


istream_iterator::char_type

문자 형식에 제공 하는 형식에서 istream_iterator.

typedef CharType char_type;

설명

템플릿 매개 변수에 대 한 동의어입니다 Chartype.

예제

// istream_iterator_char_type.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;

   typedef istream_iterator<int>::char_type CHT1;
   typedef istream_iterator<int>::traits_type CHTR1;

   // Standard iterator interface for reading
   // elements from the input stream:
   cout << "Enter integers separated by spaces & then\n"
        << " any character ( try example: '2 4 f' ): ";

   // istream_iterator for reading int stream
   istream_iterator<int, CHT1, CHTR1> intRead ( cin );

   // End-of-stream iterator
   istream_iterator<int, CHT1, CHTR1> EOFintRead;

   while ( intRead != EOFintRead )
   {
      cout << "Reading:  " << *intRead << endl;
      ++intRead;
   }
   cout << endl;
}
  2 f 4
  2 f 4
정수 공백으로 구분 하 여 입력 및 다음 문자 (예제: ' 2 4 f'): 2 4 f 읽기: 2 읽기: 4

요구 사항

헤더: <iterator>

네임 스페이스: std

참고 항목

참조

istream_iterator Class

표준 템플릿 라이브러리