atomic_fetch_and 函数

执行按位 XOR 运算在值和在 atomic 对象存储的现有值的 and。

template <class _Ty>
inline Ty atomic_fetch_and(
   volatile atomic<Ty>* Atom,
   Ty Value); _NOEXCEPT

template <class _Ty>
inline Ty atomic_fetch_and(
   volatile atomic<Ty>* Atom,
   Ty Value); _NOEXCEPT

参数

  • Atom
    若要存储类型 Ty的值 atomic 对象的指针。

  • Value
    一个 Ty 类型的值。

返回值

按位包含 and结果的 Ty 对象。

备注

使用 memory_order_seq_cstmemory_orderatomic_fetch_and 函数执行 read-modify-write 操作。Valueand 按位替换 Atom 中存储的值和在 Atom存储的当前值。

要求

基本标头:

**命名空间:**std

请参见

参考

<atomic>

原子结构

atomic_fetch_and_explicit功能