当前位置:  开发笔记 > 后端 > 正文

当给定的枚举不是某种变体时,如何返回None?

如何解决《当给定的枚举不是某种变体时,如何返回None?》经验,为你挑选了1个好方法。



1> MutantOctopu..:

我认为这只是模式匹配的限制,旨在防止意外行为.

Atagwith类型的完整"定义" CoreAtag::Core(raw::Core).显然,这些内容Core与你无关,但编译器需要知道所有内容都是"占用"的,因为编译器是规则的坚持者.解决这个问题的最简单方法是使用"任何模式",_就像你匹配非Core变体一样.

impl Atag {
    /// Returns `Some` if this is a `Core` ATAG. Otherwise returns `None`.
    pub fn core(self) -> Option {
        match self {
            // The compiler now knows that a value is expected,
            // but isn't necessary for the purposes of our program.
            Atag::Core(_) => Some(self),
            _ => None
        }
    }
}

要忽略多个值,您可以使用Something::Foo(_, _)- 变量中每个值的一个下划线,或Something::Foo(..)忽略所有值.

请记住,与其他语言不同,Rust枚举不仅仅是"不仅仅是"不同类型的集合.与枚举值相关联的数据是其中的一部分,就像结构的字段一样.所以self == Atag::Core这不是一个有意义的陈述,因为它忽略了与a相关的数据Core.A Foo(0)与a不同Foo(12),即使它们都是Foo变体.

我还要指出if let,就我所知,这是一个标准if语句的最接近的选项,而没有定义自定义is_core函数Atag(考虑到存在matchif let,基本上没有必要).

impl Atag {
    /// Returns `Some` if this is a `Core` ATAG. Otherwise returns `None`.
    pub fn core(self) -> Option {
        if let Atag::Core(_) = self {
            Some(self)
        } else {
            None
        }
    }
}

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有