次の方法で共有


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 4 f
  2 4 f
区切られた整数を spaces & then 文字 (試行の例を入力します: 「f) : 2 4  2 4 個の f の読み込み: 読み取ります: 2 4

必要条件

ヘッダー: <iterator>

名前空間: std

参照

関連項目

istream_iterator Class

標準テンプレート ライブラリ