mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 07:20:20 +08:00
Merge pull request #30 from YangFong/doc-ch06-02
doc: Optimize the statement
This commit is contained in:
commit
b67f767a78
@ -204,4 +204,4 @@ match some_u8_value {
|
||||
|
||||
`_` 模式会匹配所有的值。通过将其放置于其他分支之后,`_` 将会匹配所有之前没有指定的可能的值。`()` 就是 unit 值,所以 `_` 的情况什么也不会发生。因此,可以说我们想要对 `_` 通配符之前没有列出的所有可能的值不做任何处理。
|
||||
|
||||
然而,`match` 在只关心 **一个** 情况的场景中可能就有点啰嗦了。为此 Rust 提供了`if let`。
|
||||
然而,`match` 在只关心 **一种** 情况的场景中可能就有点啰嗦了。为此 Rust 提供了 `if let`。
|
||||
|
Loading…
Reference in New Issue
Block a user