Partager via


istreambuf_iterator::int_type

Type qui contient un type entier d'istreambuf_iterator.

typedef typename traits_type::int_type int_type;

Notes

Le type est un synonyme de Traits::int_type.

Exemple

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

int main( )
{
   using namespace std;
   istreambuf_iterator<char>::int_type inttype1 = 100;
   cout << "The inttype1 = " << inttype1 << "." << endl;
}
  

Configuration requise

En-tête : <iterator>

Espace de noms : std

Voir aussi

Référence

istreambuf_iterator, classe

Bibliothèque STL (Standard Template Library)