gpt4 book ai didi

rust - 检查 Option 是否包含特定 Some 值的最佳方法?

转载 作者:行者123 更新时间:2023-11-29 08:10:04 25 4
gpt4 key购买 nike

你不能做这样的事情:

if option.is_some() && option == 1 {
// ...
}

因为如果 option.is_some() == false 第二次比较会出错。

做这样的事情最好的方法是什么?

我现在在做什么:

if option.is_some() {
if option == 1 {
// ...
}
}

最佳答案

模式匹配是一个强大的工具,使用它!代替常规的 if,使用 if let:

if let Some(1) = option {
// --snip--
}

更多模式匹配请咨询The Rust Reference .

关于rust - 检查 Option 是否包含特定 Some 值的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57317716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com