Udostępnij za pośrednictwem


istreambuf_iterator::int_type

Typ, który zawiera typ integer istreambuf_iterator.

typedef typename traits_type::int_type int_type;

Uwagi

Typ to synonim Traits::int_type.

Przykład

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

Wymagania

Nagłówek: <iterator>

Obszar nazw: std

Zobacz też

Informacje

istreambuf_iterator Class

Standardowa biblioteka szablonu