Merge pull request #30 from YangFong/doc-ch06-02

doc: Optimize the statement
This commit is contained in:
Aaran Xu 2022-01-08 23:01:03 +08:00 committed by GitHub
commit b67f767a78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,4 +204,4 @@ match some_u8_value {
`_` 模式会匹配所有的值。通过将其放置于其他分支之后,`_` 将会匹配所有之前没有指定的可能的值。`()` 就是 unit 值,所以 `_` 的情况什么也不会发生。因此,可以说我们想要对 `_` 通配符之前没有列出的所有可能的值不做任何处理。
然而,`match` 在只关心 **一** 情况的场景中可能就有点啰嗦了。为此 Rust 提供了`if let`。
然而,`match` 在只关心 **一** 情况的场景中可能就有点啰嗦了。为此 Rust 提供了 `if let`