std::swap(std::thread)
来自cppreference.com
| void swap( std::thread& lhs, std::thread& rhs ) noexcept; |
(C++11 起) | |
对 std::thread 重载 std::swap 算法。交换 lhs 与 rhs 的状态。相当于调用 lhs.swap(rhs)。
目录 |
[编辑] 参数
| lhs, rhs | - | 要交换状态的 thread
|
[编辑] 返回值
(无)
[编辑] 示例
运行此代码
#include <chrono> #include <iostream> #include <thread> void foo() { std::this_thread::sleep_for(std::chrono::seconds(1)); } void bar() { std::this_thread::sleep_for(std::chrono::seconds(1)); } int main() { using std::swap; std::thread t1(foo); std::thread t2(bar); std::cout << "线程 1 id: " << t1.get_id() << '\n' << "线程 2 id: " << t2.get_id() << '\n'; swap(t1, t2); std::cout << "std::swap(t1, t2) 后:" << '\n' << "线程 1 id: " << t1.get_id() << '\n' << "线程 2 id: " << t2.get_id() << '\n'; t1.swap(t2); std::cout << "t1.swap(t2) 后:" << '\n' << "thread 1 id: " << t1.get_id() << '\n' << "thread 2 id: " << t2.get_id() << '\n'; t1.join(); t2.join(); }
可能的输出:
线程 1 id: 1892 线程 2 id: 2584 std::swap(t1, t2) 后: 线程 1 id: 2584 线程 2 id: 1892 t1.swap(t2) 后: 线程 1 id: 1892 线程 2 id: 2584
[编辑] 参阅
交换两个 thread 对象 (公开成员函数) |