C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- std::atomic
- std::atomic<T>::atomic
- std::atomic<T>::operator=
- std::atomic<T>::is_lock_free
- std::atomic<T>::is_always_lock_free
- std::atomic<T>::store
- std::atomic<T>::load
- std::atomic<T>::operator T()
- std::atomic<T>::exchange
- std::atomic<T>::compare_exchange_weak, std::atomic<T>::compare_exchange_strong
- std::atomic<T>::wait
- std::atomic<T>::notify_one
- std::atomic<T>::notify_all
- std::atomic<T>::fetch_add
- std::atomic<T>::fetch_sub
- std::atomic<T>::fetch_and
- std::atomic<T>::fetch_or
- std::atomic<T>::fetch_xor
- std::atomic<T>::operator++,++(int),--,--(int)
- std::atomic<T>::operator+=,-=,&=,|=,^=
- std::atomic_store, std::atomic_store_explicit
- std::atomic_load, std::atomic_load_explicit
- std::atomic_exchange, std::atomic_exchange_explicit
- std::atomic_flag
- std::atomic_ref
- std::atomic_compare_exchange_weak, std::atomic_compare_exchange_strong, std::atomic_compare_exchange_weak_explicit, std::atomic_compare_exchange_strong_explicit
- std::atomic_fetch_add, std::atomic_fetch_add_explicit
- std::atomic_fetch_sub, std::atomic_fetch_sub_explicit
- std::atomic_fetch_and, std::atomic_fetch_and_explicit
- std::atomic_fetch_or, std::atomic_fetch_or_explicit
- std::atomic_fetch_xor, std::atomic_fetch_xor_explicit
- std::atomic_is_lock_free, ATOMIC_xxx_LOCK_FREE
- std::atomic_wait, std::atomic_wait_explicit
- std::atomic_notify_one
- std::atomic_notify_all
- std::atomic_flag_test_and_set, std::atomic_flag_test_and_set_explicit
- std::atomic_flag_clear, std::atomic_flag_clear_explicit
- std::atomic_flag_test, std::atomic_flag_test_explicit
- std::atomic_flag_wait, std::atomic_flag_wait_explicit
- std::atomic_flag_notify_one
- std::atomic_flag_notify_all
- std::atomic_init
- ATOMIC_VAR_INIT
- ATOMIC_FLAG_INIT
- std::memory_order
- std::kill_dependency
- std::atomic_thread_fence
- std::atomic_signal_fence
- 注释
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >原子操作库 >std::atomic > std::atomic<T>::operator+=,-=,&=,|=,^=
std::atomic<T>::operator+=,-=,&=,|=,^=
仅为 atomic<Integral> (C++11) 与 atomic<Floating> (C++20) 模板特化的成员 |
||
(1) | ||
T operator+=( T arg ) noexcept; |
||
T operator+=( T arg ) volatile noexcept; |
||
仅为 atomic<T*> 模板特化的成员 |
||
(1) | ||
T* operator+=( std::ptrdiff_t arg ) noexcept; |
||
T* operator+=( std::ptrdiff_t arg ) volatile noexcept; |
||
仅为 atomic<Integral> (C++11) 与 atomic<Floating> (C++20) 模板特化的成员 |
||
(2) | ||
T operator-=( T arg ) noexcept; |
||
T operator-=( T arg ) volatile noexcept; |
||
仅为 atomic<T*> 模板特化的成员 |
||
(2) | ||
T* operator-=( std::ptrdiff_t arg ) noexcept; |
||
T* operator-=( std::ptrdiff_t arg ) volatile noexcept; |
||
仅为 atomic<Integral> 模板特化的成员 |
||
(3) | ||
T operator&=( T arg ) noexcept; |
||
T operator&=( T arg ) volatile noexcept; |
||
(4) | ||
T operator|=( T arg ) noexcept; |
||
T operator|=( T arg ) volatile noexcept; |
||
(5) | ||
T operator^=( T arg ) noexcept; |
||
T operator^=( T arg ) volatile noexcept; |
||
原子地以涉及先前值和 arg
的计算结果替换当前值。操作是读-修改-写操作。
1) 进行原子加法。等价于 fetch_add(arg) + arg 。
2) 进行原子减法。等价于 fetch_sub(arg) - arg 。
3) 进行原子逐位与。等价于 fetch_and(arg) & arg 。
4) 进行原子逐位或。等价于 fetch_or(arg) | arg 。
5) 进行原子逐位异或。等价于 fetch_xor(arg) ^ arg 。
对于有符号整数 (Integral
) 类型,算术定义为使用补码表示。无未定义结果。
对于浮点类型,有影响的浮点环境可能异于调用方线程的浮点环境。操作不必服从对应的 std::numeric_limits 特性,但鼓励这么做。若结果不是其类型所能表示的值,则结果未指定,但操作不会另有未定义行为。 |
(C++20 起) |
对于 T*
类型,结果可能为未定义地址,但操作不会另有未定义行为。若 T
不是对象类型则程序为病式。
参数
arg | - | 算术运算的参数 |
返回值
返回值(即应用对应二元运算符到 *this
的修改顺序中立即前趋于成员对应函数效果的值)
注意
不同于大多数复合赋值运算符,原子类型的复合赋值运算符不返回到其左侧运算数的引用。它们替而返回存储的值的副本。
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
DR | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
P0558R1 | C++11 | 曾容许指向 cv void 或函数的指针 | 使之为病式 |
参阅
令原子值增加或减少一 (公开成员函数) |