Sdílet prostřednictvím


istream_iterator::traits_type

Typ, který poskytuje pro typ vlastnosti znaku istream_iterator.

typedef Traits traits_type;

Poznámky

Typ je synonymum pro parametr šablony znaky.

Příklad

// 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
zadejte celých čísel oddělených mezerami & Klepněte na libovolný znak (zkuste Příklad: 10 20 "): 10 20 čtení: čtení 10: 20

Požadavky

Záhlaví: <iterator>

Obor názvů: std

Viz také

Referenční dokumentace

istream_iterator Class

Standardní šablona knihovny