std::ostreambuf_iterator<CharT,Traits>::operator++
来自 cppreference.com
< cpp | iterator | ostreambuf iterator
ostreambuf_iterator& operator++(); |
||
ostreambuf_iterator& operator++( int ); |
||
什么也不做。这些运算符重载是为了满足 LegacyOutputIterator 的要求提供的。它们使表达式 *iter++=value 和 *++iter=value 可以用来将值输出(插入)到底层流中。
[编辑] 参数
(无)
[编辑] 返回值
*this