std::ostreambuf_iterator<CharT,Traits>::operator++
来自 cppreference.cn
< cpp | 迭代器 | ostreambuf 迭代器
ostreambuf_iterator& operator++(); |
||
ostreambuf_iterator& operator++( int ); |
||
不执行任何操作。这些运算符重载是为了满足 LegacyOutputIterator 的要求。它们使得表达式 *iter++=value 和 *++iter=value 可以用于向底层流输出(插入)值。
[编辑] 参数
(无)
[编辑] 返回值
*this