std::move
来自cppreference.com
![]() |
该页由英文版维基使用谷歌翻译机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击此处。 |
定义于头文件 <algorithm>
|
||
template< class InputIt, class OutputIt > OutputIt move( InputIt first, InputIt last, OutputIt d_first ); |
(C++11 起) | |
移动的范围
[first, last)
中的元素,到另一个范围开始于d_first
。此操作后,移离范围中的元素将包含有效的数值适当类型的,但不一定是相同的值前移到.目录 |
[编辑] 参数
first, last | - | |
d_first | - | 的目标范围的开头。如果 d_first 内[first, last) ,std::move_backward必须使用代替NJ的std ::移动</ span>. 原文: the beginning of the destination range. If d_first is within [first, last) , std::move_backward must be used instead of 的std::move. |
类型要求 | ||
-InputIt 必须满足 InputIterator 的要求。
| ||
-OutputIt 必须满足 OutputIterator 的要求。
|
[编辑] 返回值
过去的最后一个元素的元素的输出迭代器的移动(d_first + (last - first))
[编辑] 复杂度
[编辑] 可能的实现
template<class InputIt, class OutputIt> OutputIt move(InputIt first, InputIt last, OutputIt d_first) { while (first != last) { *d_first++ = std::move(*first++); } return d_first; } |
[编辑] 示例
下面的代码将线程对象(它们本身并不能被拷贝)从一个容器移动到另一个容器。
运行此代码
#include <iostream> #include <vector> #include <list> #include <iterator> #include <thread> #include <chrono> void f(int n) { std::this_thread::sleep_for(std::chrono::seconds(n)); std::cout << "thread " << n << " ended" << '\n'; } int main() { std::vector<std::thread> v; v.emplace_back(f, 1); v.emplace_back(f, 2); v.emplace_back(f, 3); std::list<std::thread> l; // copy() would not compile, because std::thread is noncopyable std::move(v.begin(), v.end(), std::back_inserter(l)); for(auto& t : l) t.join(); }
输出:
thread 1 ended thread 2 ended thread 3 ended
[编辑] 另请参阅
(C++11) |
按从后往前的顺序移动某一范围的元素到新的位置 (函数模板) |