From f2d40e7e8e69153d78970f936f0fdd6c18920b17 Mon Sep 17 00:00:00 2001 From: CamaroW <111119365+CamaroW@users.noreply.github.com> Date: Tue, 4 Mar 2025 23:05:44 +0800 Subject: [PATCH] Update hashmap.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改了一处“自家人知道自家事”。 添加了 get 方法的参数说明(需要是引用类型) --- src/basic/collections/hashmap.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/basic/collections/hashmap.md b/src/basic/collections/hashmap.md index bf8ea398..043a21fb 100644 --- a/src/basic/collections/hashmap.md +++ b/src/basic/collections/hashmap.md @@ -81,7 +81,7 @@ fn main() { 代码很简单,`into_iter` 方法将列表转为迭代器,接着通过 `collect` 进行收集,不过需要注意的是,`collect` 方法在内部实际上支持生成多种类型的目标集合,因此我们需要通过类型标注 `HashMap<_,_>` 来告诉编译器:请帮我们收集为 `HashMap` 集合类型,具体的 `KV` 类型,麻烦编译器您老人家帮我们推导。 -由此可见,Rust 中的编译器时而小聪明,时而大聪明,不过好在,它大聪明的时候,会自家人知道自己事,总归会通知你一声: +由此可见,Rust 中的编译器时而小聪明,时而大聪明,不过好在,它大聪明的时候,会自家人知道自家事,总归会通知你一声: ```console error[E0282]: type annotations needed // 需要类型标注 @@ -186,6 +186,20 @@ let score: Option<&i32> = scores.get(&team_name); - `get` 方法返回一个 `Option<&i32>` 类型:当查询不到时,会返回一个 `None`,查询到时返回 `Some(&i32)` - `&i32` 是对 `HashMap` 中值的借用,如果不使用借用,可能会发生所有权的转移 +- `get` 方法的 `key` 参数必须是一个引用,如这里的 `scores.get(&team_name)`,这是因为 `HashMap` 的 `get` 方法的签名如下: +```rust +impl HashMap +where + K: Eq + Hash, +{ + pub fn get(&self, k: &Q) -> Option<&V> + where + K: Borrow, + Q: Hash + Eq + ?Sized, + { ... } +} +``` +- 可以看到签名中的 `k: &Q`。下面的特征约束 `K: Borrow` 是指类型 `K` 需要能以另一种形式 `Q` 被借用。在这种情况下,`String` 实现了 `Borrow`,所以 `&String` 和 `&str` 类型都可以用于 `get` 方法。 还可以继续拓展下,上面的代码中,如果我们想直接获得值类型的 `score` 该怎么办,答案简约但不简单: @@ -314,4 +328,4 @@ assert_eq!(hash.get(&42), Some(&"the answer")); ## 课后练习 -> [Rust By Practice](https://practice-zh.course.rs/collections/hashmap.html),支持代码在线编辑和运行,并提供详细的[习题解答](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/Hashmap.md)。 \ No newline at end of file +> [Rust By Practice](https://practice-zh.course.rs/collections/hashmap.html),支持代码在线编辑和运行,并提供详细的[习题解答](https://github.com/sunface/rust-by-practice/blob/master/solutions/collections/Hashmap.md)。