iostream迭代器的限制

流迭代器的限制:

(1)不可能从ostream_iterator对象读入,也不可能写到istream_iterator对象中。

(2)一旦给ostream_iterator对象赋了一个值,写入就提交了。赋值后,没有办法再改变这个值。此外,ostream_iterator对象中每个不同的值都只能正好输出一次。

(3)ostream_iterator没有->操作。

可否解释一下第二条

http://blog.csdn.net/seadplus/article/details/7613222