public member function
<iterator>

std::ostream_iterator::operator*

reference operator*() const;
Dereference iterator
Returns *this.

This actually does not dereference the iterator other than to be assigned a value with operator=

参数



返回值

*this

数据竞争

该对象被访问。

异常安全

Strong guarantee: if an exception is thrown, there are no changes in the iterator.

另见