std::front_insert_iterator::operator++
来自cppreference.com
< cpp | iterator | front insert iterator
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
front_insert_iterator& operator++(); |
||
front_insert_iterator& operator++( int ); |
||
什么也不做。这些操作符重载,能够满足要求
OutputIterator
。他们使人们有可能的的表达式*iter++=value,*++iter=value被用来输出(insert)一个值到底层的容器.....原文:
Does nothing. These operator overloads are provided to satisfy the requirements of
OutputIterator
. They make it possible for the expressions *iter++=value and *++iter=value to be used to output (insert) a value into the underlying container.[编辑] 参数
(无)
[编辑] 返回值
*this