iter_swap(std::move_iterator)
来自 cppreference.com
< cpp | iterator | move iterator
template< std::indirectly_swappable<Iter> Iter2 > friend constexpr void |
(自 C++20 起) | |
交换两个基础迭代器指向的对象。函数体等效于 ranges::iter_swap(x.base(), y.base());.
此函数模板对普通的非限定或限定查找不可见,只有当 std::move_iterator<Iter> 是参数的关联类时,才能通过参数相关查找找到。
内容 |
[编辑] 参数
x, y | - | 要交换的元素的移动迭代器 |
[编辑] 返回值
(无)
[编辑] 复杂度
常数。
[编辑] 异常
noexcept 规范:
noexcept(noexcept(ranges::iter_swap(x.base(), y.base())))
[编辑] 示例
运行此代码
#include <iostream> #include <iterator> #include <string> #include <vector> int main() { std::vector<std::string> p{"AA", "EE"}, q{"ⱯⱯ", "ƎƎ"}; std::move_iterator<std::vector<std::string>::iterator> x = std::make_move_iterator(p.begin()), y = std::make_move_iterator(q.begin()); std::cout << *x << ' ' << *y << '\n'; iter_swap(x, y); // ADL std::cout << *x << ' ' << *y << '\n'; }
输出
AA ⱯⱯ ⱯⱯ AA
[编辑] 另请参阅
交换两个对象的值 (函数模板) | |
交换两个元素范围 (函数模板) | |
交换两个迭代器指向的元素 (函数模板) | |
(C++20) |
交换两个可取消引用的对象引用的值 (自定义点对象) |
(C++20) |
交换两个调整后的基础迭代器指向的对象 (函数模板) |