istreambuf_iterator::int_type

un tipo que proporciona un entero escribe para istreambuf_iterator.

typedef typename traits_type::int_type int_type;

Comentarios

El tipo es un sinónimo de rasgos:: int_type.

Ejemplo

// 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;
}
  

Requisitos

encabezado: <iterador>

espacio de nombres: std

Vea también

Referencia

istreambuf_iterator Class

Biblioteca de plantillas estándar