cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<iterator>
迭代器
iterator_traits
函数
advance
back_inserter
C++11
begin
distance
C++11
end
front_inserter
inserter
C++11
make_move_iterator
C++11
next
C++11
prev
迭代器类别
bidirectional_iterator_tag
forward_iterator_tag
input_iterator_tag
output_iterator_tag
random_access_iterator_tag
预定义迭代器
back_insert_iterator
front_insert_iterator
insert_iterator
istream_iterator
istreambuf_iterator
C++11
move_iterator
ostream_iterator
ostreambuf_iterator
reverse_iterator
move_iterator
C++11
move_iterator::move_iterator
成员函数
C++11
move_iterator::base
C++11
move_iterator::operator-
C++11
move_iterator::operator--
C++11
move_iterator::operator-=
C++11
move_iterator::operator->
C++11
move_iterator::operator[]
C++11
move_iterator::operator*
C++11
move_iterator::operator+
C++11
move_iterator::operator++
C++11
move_iterator::operator+=
C++11
move_iterator::operator=
非成员重载
C++11
operator- (move_iterator)
C++11
operator+ (move_iterator)
C++11
relational operators (move_iterator)
参考
<iterator>
move_iterator
`operator+`
public member function
<iterator>
std::
move_iterator
::operator+
move_iterator operator+ (difference_type n) const;
加法运算符
返回一个指向当前迭代器指向元素偏移
n
个位置的
move iterator
。
该函数在内部将操作反射到
base iterator
上,并返回一个用结果值构造的
move iterator
。
请注意,此函数要求
基类迭代器
为
随机存取迭代器
。
此运算符还重载为非成员函数,其左右操作数的类型互换,但行为相同(参见
operator+
)。
参数
n
偏移的元素数量。
成员类型
difference_type
是
基类迭代器
自身的 difference_type 的别名。
返回值
一个指向偏移
n
个位置的元素的
move iterator
。
数据竞争
该对象被访问。
返回的迭代器可用于访问或修改元素。
异常安全
提供与*基迭代器*内部操作相同的保证级别。
另见
move_iterator::operator-
减法运算符
(public member function)
move_iterator::operator++
递增迭代器位置
(public member function)
move_iterator::operator+=
前进迭代器
(public member function)