【Rust】if-let
环境
- Rust 1.56.1
- VSCode 1.61.2
概念
参考:https://doc.rust-lang.org/stable/rust-by-example/flow_control/if_let.html
示例
match 和 if-let 的比较
fn main() {
let optional = Some(7);
match optional {
Some(i) => {
println!("This is a really long string and `{:?}`", i);
}
_ => {}
};
if let Some(i) = optional {
println!("This is a really long string and `{:?}`", i);
};
}
不满足处理
fn main() {
let letter: Option<i32> = None;
if let Some(i) = letter {
println!("Matched {:?}!", i);
} else {
println!("Didn't match a number. Let's go with a letter!");
}
}
其它条件
fn main() {
let emoticon: Option<i32> = None;
let i_like_letters = false;
if let Some(i) = emoticon {
println!("Matched {:?}!", i);
} else if i_like_letters {
println!("Didn't match a number. Let's go with a letter!");
} else {
println!("I don't like letters. Let's go with an emoticon :)!");
}
}
处理枚举值
enum Foo {
Bar,
Baz,
Qux(u32),
}
fn main() {
let a = Foo::Bar;
let c = Foo::Qux(100);
if let Foo::Bar = a {
println!("a is foobar");
}
if let Foo::Qux(value) = c {
println!("c is {}", value);
}
// 匹配绑定
if let Foo::Qux(value @ 100) = c {
println!("c is one hundred");
}
}
总结
了解了 Rust 中 if-let
语法,有时候比使用 match
方便。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
2019-11-30 spring-boot 环境搭建(一)