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

履歴 編集

function
<atomic>

std::atomic_ref::operator--(C++20)

value_type operator--() const noexcept;
value_type operator--(int) const noexcept;

概要

値をデクリメントする。

  • (1) : 前置デクリメント
  • (2) : 後置デクリメント

戻り値

以下と等価:

例外

投げない

備考

この関数は、atomic_refクラスの整数型およびポインタに対する特殊化で定義される。

基本的な使い方

#include <iostream>
#include <atomic>

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

  --x;

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

出力

2

複数スレッドからデクリメントする例

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

int main()
{
  int value = 10;

  // 複数スレッドでデクリメントを呼んでも、
  // 最終的に全てのスレッドでのデクリメントが処理された値になる
  std::thread t1 {[&value] {
    --std::atomic_ref{value};
  }};
  std::thread t2 {[&value] {
    --std::atomic_ref{value};
  }};

  t1.join();
  t2.join();

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

出力

8

バージョン

言語

  • C++20

処理系

参照