move_iterator::operator++

增加属于该 move_iterator. 当前元素由 postincrement 运算符获得存储区的迭代器。下一个元素由 preincrement 运算符访问。

move_iterator& operator++();
move_iterator operator++(int);

属性值/返回值

运算符的 preincrement 版本返回 *this。

,在运算符计算 ++*this之前,运算符的 postincrement 版本返回 *this 的副本。

备注

第一 preincrement () 运算符增加单元的迭代器。然后返回 *this。

第二个 (postincrement) 运算符进行复制 *this,计算 ++*this。然后返回副本。

要求

**标题:**iterator

命名空间: std

请参见

参考

move_iterator Class

<iterator>

标准模板库

其他资源

move_iterator 成员

iterator 成员