元组

元组可以在 match 中解构,如下所示:

  1. fn main() {
  2. let pair = (0, -2);
  3. // 试一试 ^ 将不同的值赋给 `pair`
  4. println!("Tell me about {:?}", pair);
  5. // match 可以解构一个元组
  6. match pair {
  7. // 绑定到第二个元素
  8. (0, y) => println!("First is `0` and `y` is `{:?}`", y),
  9. (x, 0) => println!("`x` is `{:?}` and last is `0`", x),
  10. _ => println!("It doesn't matter what they are"),
  11. // `_` 表示不将值绑定到变量
  12. }
  13. }

参见:

元组