gpt4 book ai didi

rust - 是否可以在 Rust 的函数中定义可选参数?

转载 作者:行者123 更新时间:2023-11-29 07:58:24 33 4
gpt4 key购买 nike

Rust 是否允许可选的函数参数,然后我可以将其设置为一些默认值,例如通过模式匹配或其他一些机制?

最佳答案

技术上不可以,但您可以借助始终可用的 Option 枚举来实现类似的效果:

fn opt_arg(i: Option<int>) {
match i {
Some(x) => { println!("Got {}", x); },
None => { println!("Didn't get anything"); }
}
}

fn main() {
opt_arg(None); // Didn't get anything
opt_arg(Some(2i)); // Got 2
}

关于rust - 是否可以在 Rust 的函数中定义可选参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24982420/

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