istreambuf_iterator::int_type
Un type qui fournit un type entier pour istreambuf_iterator.
typedef typename traits_type::int_type int_type;
Notes
Le type est un synonyme pour 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>
l'espace de noms : DST