最終更新日時(UTC):
が更新

履歴 編集

function
<thread>

std::thread::joinable(C++11)

bool joinable() const noexcept;

概要

threadオブジェクトがスレッドと関連付けられているか否か取得する。

戻り値

スレッドと関連付けられているならtrueを、そうでなければfalseを返す。

例外

送出しない。

#include <cassert>
#include <thread>

int main()
{
  std::thread t([]{ /*...*/ });
  assert(t.joinable());

  t.join();
  assert(!t.joinable());
  return 0;
}

出力

バージョン

言語

  • C++11

処理系

参照