Partager via


ostream_iterator::char_type

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

typedef CharType char_type;

Notes

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

Exemple

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

int main( )
{
   using namespace std;

   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 the output stream\n"
        << "by intOut are:" << endl;
   *intOut = 10;
   *intOut = 20;
   *intOut = 30;
}
  

Configuration requise

en-tête : <iterator>

l'espace de noms : DST

Voir aussi

Référence

ostream_iterator Class

Modèles Standard