Freigeben über


istreambuf_iterator::int_type

Ein Typ, der einen ganzzahligen Typ für istreambuf_iterator bereitstellt.

typedef typename traits_type::int_type int_type;

Hinweise

Der Typ ist ein Synonym für Traits::int_type.

Beispiel

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

Anforderungen

Header: <iterator>

Namespace: std

Siehe auch

Referenz

istreambuf_iterator Class

Standardvorlagenbibliothek