Partager via


istream_iterator::traits_type

Type qui prédit le type de fonctionnalités de caractère istream_iterator.

typedef Traits traits_type;

Notes

Le type est un synonyme pour le paramètre Caractéristiquesde modèle.

Exemple

// 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 entiers de l'aEnter a10

FakePre-95bcef3b73d2414094a62da31d707d2f-1d7e1161c68b4cefb2364c9935f62029

Configuration requise

En-tête : <iterator>

Espace de noms : std

Voir aussi

Référence

istream_iterator, classe

Bibliothèque STL (Standard Template Library)