std::ostreambuf_iterator<CharT,Traits>::operator*
来自 cppreference.cn
< cpp | 迭代器 | ostreambuf 迭代器
ostreambuf_iterator& operator*(); |
||
不执行任何操作,此成员函数是为了满足 LegacyOutputIterator 的要求而提供的。
它返回迭代器本身,这使得可以使用诸如 *iter = value 的代码来将值输出(插入)到底层流中。
[编辑] 参数
(无)
[编辑] 返回值
*this