istreambuf_iterator::int_type
Typ, který poskytuje typ integer istreambuf_iterator.
typedef typename traits_type::int_type int_type;
Poznámky
Typ je synonymum pro Traits::int_type.
Příklad
// 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;
}
Požadavky
Záhlaví: <iterator>
Obor názvů: std