gpt4 book ai didi

rust - 如何仅在 Option 为 None 时有条件地执行代码?

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

如果函数在可选中返回一个值,我不想采取行动;如何只测试 None 情况?这段代码有效,但看起来很糟糕。

let v = ffunc();
match v {
None => { callproc() },
Some(x) => { }
}

在 C 中,我可以写:

int x = ffunc();
if ( !x ) { callproc() }

最佳答案

如果您对该值不感兴趣,只需使用 Option::is_none() ,或其对应物 Option::is_some() :

if v.is_none() { ... }

关于rust - 如何仅在 Option 为 None 时有条件地执行代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53177980/

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