std::jthread::get_id
来自cppreference.com
[[nodiscard]] std::jthread::id get_id() const noexcept; |
(C++20 起) | |
返回标识与 *this 关联的线程的 std::jthread::id 。
参数
(无)
返回值
标识与 *this 关联的线程的 std::jthread::id 类型值。若无关联的线程,则返回默认构造的 std::jthread::id 。
示例
运行此代码
#include <iostream> #include <thread> #include <chrono> void foo() { std::this_thread::sleep_for(std::chrono::seconds(1)); } int main() { std::jthread t1(foo); std::jthread::id t1_id = t1.get_id(); std::jthread t2(foo); std::jthread::id t2_id = t2.get_id(); std::cout << "t1's id: " << t1_id << '\n'; std::cout << "t2's id: " << t2_id << '\n'; }
可能的输出:
t1's id: 0x35a7210f t2's id: 0x35a311c4
参阅
表示线程的 id ( std::thread 的公开成员类) | |
检查线程是否可合并,即潜在地运行于平行环境中 (公开成员函数) |