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

履歴 編集

function
<thread>

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

namespace std {
  void swap(thread& x, thread& y) noexcept;
}

概要

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

効果

x.swap(y);

戻り値

なし

例外

投げない

#include <thread>

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

  std::swap(t1, t2);

  t2.join();

  return 0;
}

出力

バージョン

言語

  • C++11

処理系

参照