提供 ostreambuf_iterator的字符类型的类型。
typedef CharType char_type;
备注
该类型是模板参数的 CharType同义词。
示例
// istreambuf_iterator_char_type.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>
#include <algorithm>
int main( )
{
using namespace std;
typedef istreambuf_iterator<char>::char_type CHT1;
typedef istreambuf_iterator<char>::traits_type CHTR1;
cout << "(Try the example: 'So many dots to be done'\n"
<< " then an Enter key to insert into the output,\n"
<< " & use a ctrl-Z Enter key combination to exit): ";
// istreambuf_iterator for input stream
istreambuf_iterator< CHT1, CHTR1> charInBuf ( cin );
ostreambuf_iterator<char> charOut ( cout );
// Used in conjunction with replace_copy algorithm
// to insert into output stream and replace spaces
// with dot-separators
replace_copy ( charInBuf , istreambuf_iterator<char>( ),
charOut , ' ' , '.' );
}
将执行许多点
将执行许多点 (请尝试该示例:“是done然后enter键插入到输出中,&使用CTRL Z的许多点enter键组合退出):许多的点完成的So.many.dots.to.be.do ne ^Z
要求
标头: <iterator>
命名空间: std