代码如下:
fn main() {
let v = Some(0u8);
match v {
Some(3) => println!("three"),
_ => println!("othres")
}
// 争对上面这个语法,可以使用if let
if let Some(3) =v {
println!("three");
}else{
println!("othres");
}
}