You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
806 B

// option2.rs
// 让我通过编译!执行 `rustlings hint option2` 获取提示!
// I AM NOT DONE
fn main() {
let optional_word = Some(String::from("rustlings"));
// TODO改成适用于值为 "Some" 类型的 if let 语句,
word = optional_word {
println!("The word is: {}", word);
} else {
println!("The optional word doesn't contain anything");
}
let mut optional_integers_vec: Vec<Option<i8>> = Vec::new();
for x in 1..10 {
optional_integers_vec.push(Some(x));
}
// TODO改成 while let 语句——记住vector.pop 的返回类型为 Option<T>。
// 你可以多次层叠地对 `Option<T>` 使用 while let 或 if let
integer = optional_integers_vec.pop() {
println!("current value: {}", integer);
}
}