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

履歴 編集

function
<thread>

std::jthread::swap (非メンバ関数)(C++20)

friend void swap(jthread& x, jthread& y) noexcept;

概要

2つのjthreadオブジェクトを入れ替える

効果

x.swap(y);

戻り値

なし

例外

投げない

#include <thread>

int main()
{
  std::jthread t1([]{ /*...*/ });
  std::jthread t2;

  swap(t1, t2);

  t2.join();

  return 0;
}

出力

バージョン

言語

  • C++20

処理系