Partager via


ostream_iterator::traits_type

Un type qui fournit le type de caractéristiques de caractère de l'itérateur.

typedef Traits traits_type;

Notes

Le type est un synonyme pour le paramètre Traitsde modèle.

Exemple

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

int main( )
{
   using namespace std;

   // The following not OK, but are just the default values:
   typedef ostream_iterator<int>::char_type CHT1;
   typedef ostream_iterator<int>::traits_type CHTR1;

   // ostream_iterator for stream cout
   // with new line delimiter:
    ostream_iterator<int, CHT1, CHTR1> intOut ( cout , "\n" );

   // Standard iterator interface for writing
   // elements to the output stream:
   cout << "The integers written to output stream\n"
        << "by intOut are:" << endl;
   *intOut = 1;
   *intOut = 10;
   *intOut = 100;
}
  

Configuration requise

en-tête : <iterator>

l'espace de noms : DST

Voir aussi

Référence

ostream_iterator Class

Modèles Standard