• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <thread>

    std::jthread::swap

    void swap(jthread& x) noexcept;
    

    概要

    別のjthreadと交換する。

    効果

    *thisxを入れ替える。

    例外

    送出しない。

    #include <thread>
    
    int main()
    {
      std::jthread t1([]{ /*...*/ });
      std::jthread t2;
    
      t1.swap(t2);
    
      t2.join();
    
      return 0;
    }
    

    出力

    バージョン

    言語

    • C++20

    処理系