std::jthread::joinable
来自 cppreference.com
bool joinable() const noexcept; |
(自 C++20) | |
检查 std::jthread
对象是否标识了正在执行的活动线程。具体来说,如果 true get_id() != std::jthread::id(),则返回 true。因此,默认构造的 jthread
不可连接。
已经完成执行代码但尚未连接的线程仍然被视为正在执行的活动线程,因此是可连接的。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
如果 std::jthread
对象标识了正在执行的活动线程,则为 true,否则为 false。
[编辑] 示例
运行此代码
#include <chrono> #include <iostream> #include <thread> using namespace std::chrono_literals; void foo() { std::this_thread::sleep_for(500ms); } int main() { std::cout << std::boolalpha; std::jthread t; std::cout << "before starting, joinable: " << t.joinable() << '\n'; t = std::jthread{foo}; std::cout << "after starting, joinable: " << t.joinable() << '\n'; t.join(); std::cout << "after joining, joinable: " << t.joinable() << '\n'; t = std::jthread{foo}; t.detach(); std::cout << "after detaching, joinable: " << t.joinable() << '\n'; }
输出
before starting, joinable: false after starting, joinable: true after joining, joinable: false after detaching, joinable: false
[编辑] 参考
- C++23 标准 (ISO/IEC 14882:2024)
- 33.4.4.3 成员 [thread.jthread.mem]
- C++20 标准 (ISO/IEC 14882:2020)
- 32.4.3.2 成员 [thread.jthread.mem]
[编辑] 参见
返回线程的 id (公共成员函数) | |
等待线程完成其执行 (公共成员函数) | |
允许线程独立于线程句柄执行 (公共成员函数) |