跳转至

Supplements for Basics

忽略变量

在声明一个变量却没有使用时,Rust会给出警告。如果不需要使用这个变量,可以在变量名前加上下划线前缀作为标记。名为_的变量是一个特殊的变量,它可以被声明多次,但是不能被使用。

Download source code

1
2
3
4
5
fn main() {
    let _: i32 = 5;
    println!("{}", _);
    // error: in expressions, `_` can only be used on the left-hand side of an assignment
}

模式匹配

评论