<thread>

public member function
<thread>

std::thread::joinable

bool joinable() const noexcept;
检查是否可join
返回 thread 对象是否是*joinable*。

一个 thread 对象是*joinable*的,如果它代表一个执行线程。

在以下任何情况下,thread 对象*不是joinable*:
  • 如果它被*默认构造*。
  • 如果它已被移动(在*构造*另一个 thread 对象时,或*赋值给它*时)。
  • 如果它的成员 joindetach 被调用过。

参数



返回值

如果线程是*joinable*,则为 true
否则返回 false

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// example for thread::joinable
#include <iostream>       // std::cout
#include <thread>         // std::thread
 
void mythread() 
{
  // do stuff...
}
 
int main() 
{
  std::thread foo;
  std::thread bar(mythread);

  std::cout << "Joinable after construction:\n" << std::boolalpha;
  std::cout << "foo: " << foo.joinable() << '\n';
  std::cout << "bar: " << bar.joinable() << '\n';

  if (foo.joinable()) foo.join();
  if (bar.joinable()) bar.join();

  std::cout << "Joinable after joining:\n" << std::boolalpha;
  std::cout << "foo: " << foo.joinable() << '\n';
  std::cout << "bar: " << bar.joinable() << '\n';

  return 0;
}

输出(3秒后)
Joinable after construction:
foo: false
bar: true
Joinable after joining:
foo: false
bar: false


数据竞争

该对象被访问。

异常安全

无异常保证: 绝不抛出异常。

另见