mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-09 00:43:59 +08:00
Fix typo: in the description of fn 'unwrap_or'
This commit is contained in:
parent
085129eb18
commit
418194a3c2
@ -34,7 +34,7 @@
|
||||
|
||||
<span class="caption">示例 8-21:访问哈希 map 中储存的蓝队分数</span>
|
||||
|
||||
这里,`score` 是与蓝队分数相关的值,应为 `10`。`get` 方法返回 `Option<&V>`,如果某个键在哈希 map 中没有对应的值,`get` 会返回 `None`。程序中通过调用 `copied` 方法来获取一个 `Option<i32>` 而不是 `Option<&i32>`,接着调用 `unwrap_or` 在 `score` 中没有该键所对应的项时将其设置为零。
|
||||
这里,`score` 是与蓝队分数相关的值,应为 `10`。`get` 方法返回 `Option<&V>`,如果某个键在哈希 map 中没有对应的值,`get` 会返回 `None`。程序中通过调用 `copied` 方法来获取一个 `Option<i32>` 而不是 `Option<&i32>`,接着调用 `unwrap_or` 在 `scores` 中没有该键所对应的项时将其设置为零。
|
||||
|
||||
可以使用与 vector 类似的方式来遍历哈希 map 中的每一个键值对,也就是 `for` 循环:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user