Udostępnij za pośrednictwem


istream_iterator::traits_type

Typ, który przewiduje typu cech znaku istream_iterator.

typedef Traits traits_type;

Uwagi

Typ jest synonimem parametru cech.

Przykład

// istream_iterator_traits_type.cpp
// compile with: /EHsc
#include <iterator>
#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: '10 20 a' ): ";

   // 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;
}
  10 20
  10 20
wprowadź liczby całkowite, oddzielonych spacjami & następnie dowolny znak (spróbuj na przykład: 10 "20"): 10 20 a czytania: czytanie 10: 20

Wymagania

Nagłówek: <iterator>

Obszar nazw: std

Zobacz też

Informacje

istream_iterator Class

Standardowa biblioteka szablonu