本文簡要介紹rust語言中 std::sync::atomic::AtomicU64.fetch_max
的用法。
用法
pub fn fetch_max(&self, val: u64, order: Ordering) -> u64
當前值的最大值。
查找當前值和參數 val
的最大值,並將新值設置為結果。
返回前一個值。
fetch_max
采用 Ordering
參數,該參數說明了此操作的內存順序。所有排序模式都是可能的。請注意,使用 Acquire
使存儲部分成為此操作 Relaxed
,使用 Release
使加載部分成為 Relaxed
。
注意:此方法僅適用於支持原子操作的平台u64
.
例子
use std::sync::atomic::{AtomicU64, Ordering};
let foo = AtomicU64::new(23);
assert_eq!(foo.fetch_max(42, Ordering::SeqCst), 23);
assert_eq!(foo.load(Ordering::SeqCst), 42);
如果要一步獲取最大值,可以使用以下方法:
use std::sync::atomic::{AtomicU64, Ordering};
let foo = AtomicU64::new(23);
let bar = 42;
let max_foo = foo.fetch_max(bar, Ordering::SeqCst).max(bar);
assert!(max_foo == 42);
相關用法
- Rust AtomicU64.fetch_min用法及代碼示例
- Rust AtomicU64.fetch_update用法及代碼示例
- Rust AtomicU64.fetch_or用法及代碼示例
- Rust AtomicU64.fetch_and用法及代碼示例
- Rust AtomicU64.fetch_sub用法及代碼示例
- Rust AtomicU64.fetch_nand用法及代碼示例
- Rust AtomicU64.fetch_xor用法及代碼示例
- Rust AtomicU64.fetch_add用法及代碼示例
- Rust AtomicU64.from_mut用法及代碼示例
- Rust AtomicU64.into_inner用法及代碼示例
- Rust AtomicU64.compare_exchange用法及代碼示例
- Rust AtomicU64.new用法及代碼示例
- Rust AtomicU64.as_mut_ptr用法及代碼示例
- Rust AtomicU64.get_mut用法及代碼示例
- Rust AtomicU64.compare_exchange_weak用法及代碼示例
- Rust AtomicU64.load用法及代碼示例
- Rust AtomicU64.swap用法及代碼示例
- Rust AtomicU64.store用法及代碼示例
- Rust AtomicU64.compare_and_swap用法及代碼示例
- Rust AtomicU8.fetch_sub用法及代碼示例
- Rust AtomicU32.fetch_min用法及代碼示例
- Rust AtomicU8.fetch_or用法及代碼示例
- Rust AtomicUsize.load用法及代碼示例
- Rust AtomicU16.into_inner用法及代碼示例
- Rust AtomicU16.from_mut用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::sync::atomic::AtomicU64.fetch_max。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。