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() }
    }
相关推荐
百锦再几秒前
Java 并发编程进阶,从线程池、锁、AQS 到并发容器与性能调优全解析
java·开发语言·jvm·spring·kafka·tomcat·maven
条tiao条9 分钟前
KMP 算法详解:告别暴力匹配,让字符串匹配 “永不回头”
开发语言·算法
干啥啥不行,秃头第一名14 分钟前
C++20概念(Concepts)入门指南
开发语言·c++·算法
2301_8073671941 分钟前
C++中的解释器模式变体
开发语言·c++·算法
Edward111111111 小时前
3.18异常学习
学习
always_TT1 小时前
C语言中的字符与字符串(char数组)
c语言·开发语言
forAllforMe2 小时前
LAN9252 从机寄存器配置--C语言举例
c语言·开发语言
正经人_x2 小时前
学习日记34:UNETR
学习
科技林总2 小时前
【系统分析师】12.3 软件架构描述与表示
学习
weixin_537590452 小时前
《C程序设计语言》练习答案(练习1-4)
c语言·开发语言