本文簡要介紹rust語言中 std::lazy::SyncOnceCell.get_or_init
的用法。
用法
pub fn get_or_init<F>(&self, f: F) -> &T where F: FnOnce() -> T,
獲取單元格的內容,如果單元格為空,則使用 f
對其進行初始化。
許多線程可能會使用不同的初始化函數同時調用get_or_init
,但保證隻會執行一個函數。
Panics
如果 f
出現Panics,則Panics會傳播給調用者,並且單元格保持未初始化狀態。
從 f
重新初始化單元格是錯誤的。確切的結果是未指定的。當前的實現死鎖,但將來可能會變成Panics。
例子
#![feature(once_cell)]
use std::lazy::SyncOnceCell;
let cell = SyncOnceCell::new();
let value = cell.get_or_init(|| 92);
assert_eq!(value, &92);
let value = cell.get_or_init(|| unreachable!());
assert_eq!(value, &92);
相關用法
- Rust SyncOnceCell.get_or_try_init用法及代碼示例
- Rust SyncOnceCell.set用法及代碼示例
- Rust SyncOnceCell.take用法及代碼示例
- Rust SyncOnceCell.into_inner用法及代碼示例
- Rust SyncOnceCell用法及代碼示例
- Rust SyncSender.send用法及代碼示例
- Rust SyncLazy用法及代碼示例
- Rust SyncSender.try_send用法及代碼示例
- Rust SyncSender用法及代碼示例
- Rust SyncLazy.force用法及代碼示例
- Rust SystemTime.elapsed用法及代碼示例
- Rust SystemTimeError.duration用法及代碼示例
- Rust SystemTimeError用法及代碼示例
- Rust SymmetricDifference用法及代碼示例
- Rust System用法及代碼示例
- Rust SystemTime.now用法及代碼示例
- Rust SystemTime用法及代碼示例
- Rust SystemTime.duration_since用法及代碼示例
- Rust String.try_reserve用法及代碼示例
- Rust Saturating.reverse_bits用法及代碼示例
- Rust Seek.stream_len用法及代碼示例
- Rust SplitNMut用法及代碼示例
- Rust SocketAddrV6.ip用法及代碼示例
- Rust Shl.shl用法及代碼示例
- Rust SubAssign.sub_assign用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::lazy::SyncOnceCell.get_or_init。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。