命名空间
变体
动作

std::move

来自 cppreference.com
< cpp‎ | algorithm
 
 
算法库
约束算法和范围上的算法 (C++20)
约束算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
分区操作
排序操作
二分搜索操作
(在已分区范围内)
集合操作(在排序范围内)
合并操作(在排序范围内)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存操作
 
定义在头文件 <algorithm>
template< class InputIt, class OutputIt >

OutputIt move( InputIt first, InputIt last,

               OutputIt d_first );
(1) (自 C++11 起)
(自 C++20 起为 constexpr)
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 >

ForwardIt2 move( ExecutionPolicy&& policy,
                 ForwardIt1 first, ForwardIt1 last,

                 ForwardIt2 d_first );
(2) (自 C++17 起)
1) 将范围 [firstlast) 中的元素移动到以 d_first 开头的另一个范围,从 first 开始,一直到 last。在此操作之后,移动后的范围中的元素仍将包含适当类型的有效值,但不一定与移动之前相同。
2)(1) 相同,但根据 policy 执行。
此重载仅在以下情况下参与重载解析:

std::is_execution_policy_v<std::decay_t<ExecutionPolicy>>true

(直到 C++20)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>true

(自 C++20 起)

如果 d_first 在范围 [firstlast) 中,则行为未定义。在这种情况下,可以使用 std::move_backward 代替。

内容

[编辑] 参数

first, last - 要移动的元素范围
d_first - 目标范围的开始
policy - 要使用的执行策略。有关详细信息,请参阅 执行策略
类型要求
-
InputIt 必须满足 LegacyInputIterator 的要求。
-
OutputIt 必须满足 LegacyOutputIterator 的要求。
-
ForwardIt1, ForwardIt2 必须满足 LegacyForwardIterator 的要求。

[编辑] 返回值

指向已移动的最后一个元素之后的元素的迭代器。

[编辑] 复杂度

正好 std::distance(first, last) 个移动赋值。

[编辑] 异常

带有名为 ExecutionPolicy 的模板参数的重载报告错误如下

  • 如果作为算法一部分调用的函数的执行抛出异常,并且 ExecutionPolicy标准策略 之一,则调用 std::terminate。对于任何其他 ExecutionPolicy,行为是实现定义的。
  • 如果算法无法分配内存,则抛出 std::bad_alloc

[编辑] 可能的实现

template<class InputIt, class OutputIt>
OutputIt move(InputIt first, InputIt last, OutputIt d_first)
{
    for (; first != last; ++d_first, ++first)
        *d_first = std::move(*first);
 
    return d_first;
}

[编辑] 注释

当移动重叠范围时,std::move适用于向左移动(目标范围的开头在源范围之外),而std::move_backward适用于向右移动(目标范围的末尾在源范围之外)。

[编辑] 示例

以下代码将线程对象(本身不可复制)从一个容器移动到另一个容器。

#include <algorithm>
#include <chrono>
#include <iostream>
#include <iterator>
#include <list>
#include <thread>
#include <vector>
 
void f(int n)
{
    std::this_thread::sleep_for(std::chrono::seconds(n));
    std::cout << "thread " << n << " ended" << std::endl;
}
 
int main()
{
    std::vector<std::jthread> v;
    v.emplace_back(f, 1);
    v.emplace_back(f, 2);
    v.emplace_back(f, 3);
    std::list<std::jthread> l;
 
    // copy() would not compile, because std::jthread is noncopyable
    std::move(v.begin(), v.end(), std::back_inserter(l));
}

输出

thread 1 ended
thread 2 ended
thread 3 ended

[编辑] 另请参阅

以反向顺序将元素范围移动到新位置
(函数模板) [编辑]
(C++11)
将参数转换为xvalue
(函数模板) [编辑]
将元素范围移动到新位置
(niebloid)[编辑]