mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-14 21:11:31 +08:00
update ch19-03 close #496
This commit is contained in:
parent
ff8ee1680a
commit
743ba2472d
@ -48,7 +48,7 @@ pub trait Iterator<T> {
|
||||
}
|
||||
```
|
||||
|
||||
<span class="caption">示例 19-21: 一个使用泛型的 `Iterator` trait 假想定义</span>
|
||||
<span class="caption">示例 19-13: 一个使用泛型的 `Iterator` trait 假想定义</span>
|
||||
|
||||
区别在于当如示例 19-13 那样使用泛型时,则不得不在每一个实现中标注类型。这是因为我们也可以实现为 `Iterator<String> for Counter`,或任何其他类型,这样就可以有多个 `Counter` 的 `Iterator` 的实现。换句话说,当 trait 有泛型参数时,可以多次实现这个 trait,每次需改变泛型参数的具体类型。接着当使用 `Counter` 的 `next` 方法时,必须提供类型注解来表明希望使用 `Iterator` 的哪一个实现。
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user