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