rust持续学习 get_or_insert_with

通常使用一个值

if(x===null)x=some_valid_value

忽然今天看见一段代码

rust 复制代码
pub fn get_id() -> u64 
{
let mut res = struct.data.borrow_mut();
*res.get_or_insert_with(||{
 let mut xx = ...... some logic
 let id = xx.id; 
 id});
}

感觉这个名字蛮奇怪的 insert

然后翻了一下代码,是来自option.rs,原来就是空则赋值,这个写法对我来说蛮新奇的

rust 复制代码
    #[inline]
    #[stable(feature = "option_entry", since = "1.20.0")]
    #[rustc_const_unstable(feature = "const_option_ext", issue = "91930")]
    pub const fn get_or_insert_with<F>(&mut self, f: F) -> &mut T
    where
        F: ~const FnOnce() -> T,
        F: ~const Destruct,
    {
        if let None = *self {
            // the compiler isn't smart enough to know that we are not dropping a `T`
            // here and wants us to ensure `T` can be dropped at compile time.
            mem::forget(mem::replace(self, Some(f())))
        }

        // SAFETY: a `None` variant for `self` would have been replaced by a `Some`
        // variant in the code above.
        unsafe { self.as_mut().unwrap_unchecked() }
    }
相关推荐
yong9990几秒前
MATLAB的智能扫地机器人工作过程仿真
开发语言·matlab·机器人
2601_949847751 分钟前
Flutter for OpenHarmony 剧本杀组队App实战:邀请好友功能实现
开发语言·javascript·flutter
浮尘笔记3 分钟前
Go语言并发安全字典:sync.Map的使用与实现
开发语言·后端·golang
2301_811232984 分钟前
C++中的契约编程
开发语言·c++·算法
2401_829004025 分钟前
C++中的访问者模式
开发语言·c++·算法
黎雁·泠崖6 分钟前
Java内部类与匿名内部类:定义+类型+实战应用
java·开发语言
青槿吖12 分钟前
第二篇:JDBC进阶骚操作:防注入、事务回滚、连接池优化,一篇封神
java·开发语言·jvm·算法·自动化
赵萱婷13 分钟前
C++17 nodiscard属性深度解析
开发语言·c++·经验分享
kklovecode13 分钟前
C++对C语言的增强
c语言·开发语言·c++