istreambuf_iterator::int_type
istreambuf_iteratorに整数型を提供する型。
typedef typename traits_type::int_type int_type;
解説
Traits::int_type型は、のシノニムです。
使用例
// 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;
}
必要条件
ヘッダー: <iterator>
名前空間: std