usestd::sync::atomic::{AtomicU32, Ordering};letfoo = AtomicU32::new(0b101101);assert_eq!(foo.fetch_or(0b110011, Ordering::SeqCst),0b101101);assert_eq!(foo.load(Ordering::SeqCst),0b111111);
本文简要介绍rust语言中std::sync::atomic::AtomicI8.fetch_or的用法。 用法 pubfnfetch_or(&self, val:i8, order: Ordering) ->i8 按位“or” 与当前值。 对当前值和参数val执行按位 “or” 运算,并将新值设置为结果。 返回前一个值。 fetch_or采用Ordering参数,该参数说明了此操作的内存顺序。所有排...
泛型函数名是宏或是声明有外部链接的标识符是未指定的。若为访问实际函数压制宏定义(例如像(atomic_fetch_or)(...)这样加括号),或程序定义拥有泛型函数名的外部标识符,则行为未定义。 参数 obj-指向要修改的原子对象的指针 arg-要逐位或到存储于原子对象中的值的值 ...
T fetch_or( T arg, std::memory_order order = std::memory_order_seq_cst ) volatile noexcept; 原子地以值和 arg 逐位或的结果替换当前值。运算为读修改写操作。按照 order 的值影响内存。 若std::atomic<T>::is_always_lock_free 为 false 则 volatile 限定版本被弃用。 (C++20 起) 参数 arg ...
fetch_or 方法會執行 read-modify-write 作業,在 Order 所指定的記憶體限制式內,以 Value 的位元 or 和儲存於 *this 中的目前值來取代 *this 的儲存值。需求**標頭:**atomic命名空間: std請參閱參考<atomic>atomic 結構atomic_fetch_or_explicit 函式...
template <class T> T atomic_fetch_or_explicit (volatile atomic<T>* obj, T val, memory_order sync) noexcept; template <class T> T atomic_fetch_or_explicit (atomic<T>* obj, T val, memory_order sync) noexcept; overloads (2) T atomic_fetch_or_explicit (volatile A* obj, T val, ...
template <class T> T atomic_fetch_or (volatile atomic<T>* obj, T val) noexcept; template <class T> T atomic_fetch_or (atomic<T>* obj, T val) noexcept; overloads (2) T atomic_fetch_or (volatile A* obj, T val) noexcept; T atomic_fetch_or (A* obj, T val) noexcept; ...
执行按位 XOR 运算在值和在 *this存储的现有值的 or 。 Ty atomic<Ty>::fetch_or ( Ty Value, memory_order Order = memory_order_seq_cst ) volatile _NOEXCEPT; Ty atomic<Ty>::fetch_or ( Ty Value, memory_order Order = memory_order_seq_cst ) _NOEXCEPT; ...
std::atomic_fetch_and(&m_signaled, false)) { std::this_thread::sleep_for(std::chrono::milliseconds(10)); } } void put() { std::atomic_fetch_or(&m_signaled, true); } }; class ThreadedCounter { static const int N = 100; static const int REPORT_INTERVAL = 10; int m_count; ...
fetch_or方法會執行read-modify-write操作能取代預存的值為*this使用位元or的Value和目前的值會儲存在*this,並套用記憶體的條件約束所指定的Order。 需求 標頭:不可部分完成 Namespace:標準 請參閱 參考 <atomic> 不可部分完成的結構 atomic_fetch_or_explicit 函式...