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

履歴 編集

function
<atomic>

std::atomic_ref::store(C++20)

void store(T desired, memory_order order = memory_order_seq_cst) const noexcept;

概要

値を書き込む

要件

orderが以下のメモリオーダーではないこと:

効果

orderで指定されたメモリオーダーにしたがって、現在の値をdesiredでアトミックに置き換える。 この関数は、戻り値のないexchange()と見なせる。

戻り値

なし

例外

投げない

#include <iostream>
#include <atomic>
#include <thread>

int main()
{
  int value = 3;
  std::atomic_ref<int> x{value};

  std::thread t{[&x]{
    // アトミックに値を書き込む
    x.store(2);
  }};
  t.join();

  std::cout << value << std::endl;
}

出力

2

バージョン

言語

  • C++20

処理系