trpl-zh-cn/src/ch17-02-trait-objects.md

320 lines
18 KiB
Markdown
Raw Normal View History

2017-04-24 23:03:13 +08:00
## 为使用不同类型的值而设计的 trait 对象
2017-04-10 13:09:34 +08:00
> [ch17-02-trait-objects.md](https://github.com/rust-lang/book/blob/master/second-edition/src/ch17-02-trait-objects.md)
> <br>
2018-02-26 16:52:45 +08:00
> commit ccdd9ca7aacea4cefeb6a96e7ffb9ea91a923abd
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
在第八章中,我们谈到了 vector 只能存储同种类型元素的局限。示例 8-10 中提供了一个定义 `SpreadsheetCell` 枚举来储存整型,浮点型和文本成员的替代方案。这意味着可以在每个单元中储存不同类型的数据,并仍能拥有一个代表一排单元的 vector。这在当编译代码时就知道希望可以交替使用的类型为固定集合的情况下是完全可行的。
然而有时我们希望库用户在特定情况下能够扩展有效的类型集合。为了展示如何实现这一点这里将创建一个图形用户接口Graphical User Interface GUI工具的例子其它通过遍历列表并调用每一个项目的 `draw` 方法来将其绘制到屏幕上;此乃一个 GUI 工具的常见技术。我们将要创建一个叫做 `rust_gui` 的库 crate它含一个 GUI 库的结构。这个 GUI 库包含一些可供开发者使用的类型,比如 `Button``TextField`。在此之上,`rust_gui` 的用户希望创建自定义的可以绘制于屏幕上的类型:比如,一个程序员可能会增加 `Image`,另一个可能会增加 `SelectBox`
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
这个例子中并不会实现一个功能完善的 GUI 库,不过会展示其中各个部分是如何结合在一起的。编写库的时候,我们不可能知晓并定义所有其他程序员希望创建的类型。我们所知晓的是 `rust_gui` 需要记录一系列不同类型的值,并需要能够对其中每一个值调用 `draw` 方法。这里无需知道调用 `draw` 方法时具体会发生什么,只需提供可供这些值调用的方法即可。
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
在拥有继承的语言中,可以定义一个名为 `Component` 的类,该类上有一个 `draw` 方法。其他的类比如 `Button`、`Image` 和 `SelectBox` 会从 `Component` 派生并因此继承 `draw` 方法。它们各自都可以覆盖 `draw` 方法来定义自己的行为,但是框架会把所有这些类型当作是 `Component` 的实例,并在其上调用 `draw`。不过 Rust 并没有继承,我们得另寻出路。
2017-04-10 13:09:34 +08:00
2017-07-07 00:00:46 +08:00
### 定义通用行为的 trait
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
为了实现 `rust_gui` 所期望拥有的行为,定义一个 `Draw` trait其包含名为 `draw` 的方法。接着可以定义一个存放 **trait 对象***trait object* 的 vector。trait 对象指向一个实现了我们指定 trait 的类型实例。我们通过指定某些指针,比如 `&` 引用或 `Box<T>` 智能指针,接着指定相关的 trait第十九章动态大小类型部分会介绍 trait 对象必须使用指针的原因)。我们可以使用 trait 对象代替泛型或具体类型。任何使用 trait 对象的位置Rust 的类型系统会在编译时确保任何在此上下文中使用的值会实现其 trait 对象的 trait。如此便无需在编译时就知晓所有可能的类型。
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
<!-- What will the trait object do in this case? I've taken this last part of
the line from below, but I'm not 100% on that -->
<!-- I've moved up more and reworded a bit, hope that clarifies /Carol -->
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
之前提到过Rust 刻意不将结构体与枚举称为 “对象”,以便与其他语言中的对象相区别。在结构体或枚举中,结构体字段中的数据和 `impl` 块中的行为是分开的不同于其他语言中将数据和行为组合进一个称为对象的概念中。trait 对象将数据和行为两者相结合,从这种意义上说 **则** 其更类似其他语言中的对象。不过 trait 对象不同于传统的对象,因为不能向 trait 对象增加数据。trait 对象并不像其他语言中的对象那么通用trait 对象)具体的作用是允许对通用行为的抽象。
示例 17-3 展示了如何定义一个带有 `draw` 方法的 trait `Draw`
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/lib.rs</span>
2017-04-10 13:09:34 +08:00
```rust
pub trait Draw {
fn draw(&self);
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-3`Draw` trait 的定义</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
因为第十章已经讨论过如何定义 trait这看起来应该比较眼熟。接下来就是新内容了实例 17-4 定义了一个存放了名叫 `components` 的 vector 的结构体 `Screen`。这个 vector 的类型是 `Box<Draw>`,此为一个 trait 对象:它是 `Box` 中任何实现了 `Draw` trait 的类型的替身。
2017-07-07 19:48:11 +08:00
2018-02-26 16:52:45 +08:00
<!-- Would it be useful to let the reader know why we need a box here, or will
that be clear at this point? -->
<!-- We get into this in chapter 19; I've added a reference to the start of
this section where we talk about needing a `&` or a `Box` to be a trait object.
/Carol -->
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/lib.rs</span>
2017-04-10 13:09:34 +08:00
```rust
# pub trait Draw {
# fn draw(&self);
# }
#
pub struct Screen {
pub components: Vec<Box<Draw>>,
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-4: 一个 `Screen` 结构体的定义,它带有一个字段`components`,其包含实现了 `Draw` trait 的 trait 对象的 vector</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
`Screen` 结构体上,我们将定义一个 `run` 方法,该方法会对其 `components` 上的每一个组件调用 `draw` 方法,如示例 17-5 所示:
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/lib.rs</span>
2017-04-10 13:09:34 +08:00
```rust
# pub trait Draw {
# fn draw(&self);
# }
#
# pub struct Screen {
# pub components: Vec<Box<Draw>>,
# }
#
impl Screen {
pub fn run(&self) {
for component in self.components.iter() {
component.draw();
}
}
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-5`Screen` 上实现一个 `run` 方法,该方法在每个 component 上调用 `draw` 方法</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
这与定义使用了带有 trait bound 的泛型类型参数的结构体不同。泛型类型参数一次只能替代一个具体类型,而 trait 对象则允许在运行时替代多种具体类型。例如,可以定义 `Screen` 结构体来使用泛型和 trait bound如示例 17-6 所示:
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/lib.rs</span>
2017-04-10 13:09:34 +08:00
```rust
# pub trait Draw {
# fn draw(&self);
# }
#
pub struct Screen<T: Draw> {
pub components: Vec<T>,
}
impl<T> Screen<T>
where T: Draw {
pub fn run(&self) {
for component in self.components.iter() {
component.draw();
}
}
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-6: 一种 `Screen` 结构体的替代实现,其 `run` 方法使用泛型和 trait bound</span>
2018-02-26 16:52:45 +08:00
这限制了 `Screen` 实例必须拥有一个全是 `Button` 类型或者全是 `TextField` 类型的组件列表。如果只需要同质(相同类型)集合,则倾向于使用泛型和 trait bound因为其定义会在编译时采用具体类型进行单态化。
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
另一方面,通过使用 trait 对象的方法,一个 `Screen` 实例可以存放一个既能包含 `Box<Button>`,也能包含 `Box<TextField>``Vec`。让我们看看它是如何工作的,接着会讲到其运行时性能影响。
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
### 实现 trait
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
现在来增加一些实现了 `Draw` trait 的类型。我们将提供 `Button` 类型。再一次重申,真正实现 GUI 库超出了本书的范畴,所以 `draw` 方法体中不会有任何有意义的实现。为了想象一下这个实现看起来像什么,一个 `Button` 结构体可能会拥有 `width`、`height` 和 `label` 字段,如示例 17-7 所示:
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/lib.rs</span>
2017-04-10 13:09:34 +08:00
```rust
# pub trait Draw {
# fn draw(&self);
# }
#
pub struct Button {
pub width: u32,
pub height: u32,
pub label: String,
}
impl Draw for Button {
fn draw(&self) {
// Code to actually draw a button
}
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-7: 一个实现了 `Draw` trait 的 `Button` 结构体</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
`Button` 上的 `width`、`height` 和 `label` 字段会和其他组件不同,比如 `TextField` 可能有 `width`、`height`、`label` 以及 `placeholder` 字段。每一个我们希望能在屏幕上绘制的类型都会使用不同的代码来实现 `Draw` trait 的 `draw` 方法来定义如何绘制特定的类型,像这里的 `Button` 类型(并不包含任何实际的 GUI 代码,这超出了本章的范畴)。除了实现 `Draw` trait 之外,比如 `Button` 还可能有另一个包含按钮点击如何响应的方法的 `impl` 块。这类方法并不适用于像 `TextField` 这样的类型。
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
一些库的使用者决定实现一个包含 `width`、`height` 和 `options` 字段的结构体 `SelectBox`。并也为其实现了 `Draw` trait如示例 17-8 所示:
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/main.rs</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
```rust,ignore
2017-04-10 13:09:34 +08:00
extern crate rust_gui;
use rust_gui::Draw;
struct SelectBox {
width: u32,
height: u32,
options: Vec<String>,
}
impl Draw for SelectBox {
fn draw(&self) {
// Code to actually draw a select box
}
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-8: 另一个使用 `rust_gui` 的 crate 中,在 `SelectBox` 结构体上实现 `Draw` trait</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
库使用者现在可以在他们的 `main` 函数中创建一个 `Screen` 实例。至此可以通过将 `SelectBox``Button` 放入 `Box<T>` 转变为 trait 对象来增加组件。接着可以调用 `Screen``run` 方法,它会调用每个组件的 `draw` 方法。示例 17-9 展示了这个实现:
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/main.rs</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
```rust,ignore
2017-04-10 13:09:34 +08:00
use rust_gui::{Screen, Button};
fn main() {
let screen = Screen {
components: vec![
Box::new(SelectBox {
width: 75,
height: 10,
options: vec![
String::from("Yes"),
String::from("Maybe"),
String::from("No")
],
}),
Box::new(Button {
width: 50,
height: 10,
label: String::from("OK"),
}),
],
};
screen.run();
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-9: 使用 trait 对象来存储实现了相同 trait 的不同类型的值</span>
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
当编写库的时候,我们不知道何人会在何时增加 `SelectBox` 类型,不过 `Screen` 的实现能够操作并绘制这个新类型,因为 `SelectBox` 实现了 `Draw` trait这意味着它实现了 `draw` 方法。
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
这个概念 ———— 只关心值所反映的信息而不是其具体类型 ———— 类似于动态类型语言中称为 **鸭子类型***duck typing*)的概念:如果它走起来像一只鸭子,叫起来像一只鸭子,那么它就是一只鸭子!在示例 17-5 中 `Screen` 上的 `run` 实现中,`run` 并不需要知道各个组件的具体类型是什么。它并不检查组件是 `Button` 或者 `SelectBox` 的实例。通过指定 `Box<Draw>` 作为 `components` vector 中值的类型,我们就定义了 `Screen` 需要可以在其上调用 `draw` 方法的值。
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
<!-- I may be slow on the uptake here, but it seems like we're saying that
responsibility for how the type trait object behaves with the draw method is
called on it belongs to the trait object, and not to the draw method itself. Is
that an accurate summary? I want to make sure I'm clearly following the
argument! -->
<!-- Each type (like `Button` or `SelectBox`) that implements the `Draw` trait
can customize what happens in the body of the `draw` method. The trait object
is just responsible for making sure that the only things that are usable in
that context are things that implement the `Draw` trait. Does this clear it up
at all? Is there something we should clarify in the text? /Carol -->
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
使用 trait 对象和 Rust 类型系统来进行类似鸭子类型操作的优势是无需在运行时检查一个值是否实现了特定方法或者担心在调用时因为值没有实现方法而产生错误。如果值没有实现 trait 对象所需的 trait 则 Rust 不会编译这些代码。
例如,示例 17-10 展示了当创建一个使用 `String` 做为其组件的 `Screen` 时发生的情况:
2017-04-10 13:09:34 +08:00
2017-05-29 23:49:32 +08:00
<span class="filename">文件名: src/main.rs</span>
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
```rust,ignore
2017-04-10 13:09:34 +08:00
extern crate rust_gui;
2018-02-26 16:52:45 +08:00
use rust_gui::Screen;
2017-04-10 13:09:34 +08:00
fn main() {
let screen = Screen {
components: vec![
Box::new(String::from("Hi")),
],
};
screen.run();
}
```
2018-02-26 16:52:45 +08:00
<span class="caption">示例 17-10: 尝试使用一种没有实现 trait 对象的 trait 的类型</span>
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
我们会遇到这个错误,因为 `String` 没有实现 `rust_gui::Draw` trait
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
```text
error[E0277]: the trait bound `std::string::String: rust_gui::Draw` is not satisfied
2017-04-10 13:09:34 +08:00
-->
|
4 | Box::new(String::from("Hi")),
2018-02-26 16:52:45 +08:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rust_gui::Draw` is not
2017-04-10 13:09:34 +08:00
implemented for `std::string::String`
|
2018-02-26 16:52:45 +08:00
= note: required for the cast to the object type `rust_gui::Draw`
2017-04-10 13:09:34 +08:00
```
2017-07-07 19:48:11 +08:00
这告诉了我们,要么是我们传递了并不希望传递给 `Screen` 的类型并应该提供其他类型,要么应该在 `String` 上实现 `Draw` 以便 `Screen` 可以调用其上的 `draw`
2017-04-10 16:06:17 +08:00
2017-07-07 19:48:11 +08:00
### trait 对象执行动态分发
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
回忆一下第十章讨论过的,当对泛型使用 trait bound 时编译器所进行单态化处理:编译器为每一个被泛型类型参数代替的具体类型生成了非泛型的函数和方法实现。单态化所产生的代码进行 **静态分发***static dispatch*)。静态分发发生于编译器在编译时就知晓调用了什么方法的时候。这与 **动态分发** *dynamic dispatch*)相对,这时编译器在编译时无法知晓调用了什么方法。在这种情况下,编译器会生成在运行时确定调用了什么方法的代码。
2017-04-10 16:06:17 +08:00
2018-02-26 16:52:45 +08:00
<!--I'm struggling to follow the static dispatch definition, can you expand
that a little? Which part of that is the static dispatch, pre-determining the
code called with a method and storing it? -->
<!-- Yes, in a way. We've expanded and moved the definitions of static and
dynamic dispatch together to better contrast, hopefully this helps? /Carol -->
当使用 trait 对象时Rust 必须使用动态分发。编译器无法知晓所有可能用于 trait 对象代码的类型所以它也不知道应该调用哪个类型的哪个方法实现。为此Rust 在运行时使用 trait 对象中的指针来知晓需要调用哪个方法。动态分发也阻止编译器有选择的内联方法代码,这会相应的禁用一些优化。尽管在编写和支持代码的过程中确实获得了额外的灵活性,但仍然需要权衡取舍。
2017-04-10 16:06:17 +08:00
2017-07-08 16:59:10 +08:00
### Trait 对象要求对象安全
2017-04-10 13:09:34 +08:00
<!-- Liz: we're conflicted on including this section. Not being able to use a
trait as a trait object because of object safety is something that
beginner/intermediate Rust developers run into sometimes, but explaining it
fully is long and complicated. Should we just cut this whole section? Leave it
(and finish the explanation of how to fix the error at the end)? Shorten it to
a quick caveat, that just says something like "Some traits can't be trait
objects. Clone is an example of one. You'll get errors that will let you know
if a trait can't be a trait object, look up object safety if you're interested
in the details"? Thanks! /Carol -->
2018-02-26 16:52:45 +08:00
<!-- That sounds like a good solution, since the compiler will warn them in any
case. I read through, editing a little, and I agree we could afford to cut it,
I'm not sure it brings practical skills to the user -->
<!-- Ok, I've cut section way down to the practical pieces, but still explained
a little bit /Carol -->
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
只有 **对象安全***object safe*)的 trait 才可以组成 trait 对象。围绕所有使得 trait 对象安全的属性存在一些复杂的规则,不过在实践中,只涉及到两条规则。如果一个 trait 中所有的方法有如下属性时,则该 trait 是对象安全的:
2017-05-26 22:52:14 +08:00
2018-02-26 16:52:45 +08:00
- 返回值类型不为 `Self`
- 方法没有任何泛型类型参数
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
`Self` 关键字是我们要实现 trait 或方法的类型的别名。对象安全对于 tarit 对象是必须的,因为一旦有了 trait 对象,就不再知晓实现该 trait 的具体类型是什么了。如果 trait 方法返回具体的 `Self` 类型,但是 trait 对象忘记了其真正的类型,那么方法不可能使用已经忘却的原始具体类型。同理对于泛型类型参数来说,当使用 trait 时其会放入具体的类型参数:此具体类型编程了实现改 trait 的类型的一部分。当使用 trait 对象时其具体类型被抹去了,故无从得知放入泛型参数类型的类型是什么。
2017-05-28 13:58:47 +08:00
2017-07-08 16:59:10 +08:00
一个 trait 的方法不是对象安全的例子是标准库中的 `Clone` trait。`Clone` trait 的 `clone` 方法的参数签名看起来像这样:
2017-04-10 13:09:34 +08:00
```rust
pub trait Clone {
fn clone(&self) -> Self;
}
```
2017-07-08 16:59:10 +08:00
`String` 实现了 `Clone` trait当在 `String` 实例上调用 `clone` 方法时会得到一个 `String` 实例。类似的,当调用 `Vec` 实例的 `clone` 方法会得到一个 `Vec` 实例。`clone` 的签名需要知道什么类型会代替 `Self`,因为这是它的返回值。
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
如果尝试做一些违反有关 trait 对象的对象安全规则的事情,编译器会提示你。例如,如果尝试实现示例 17-4 中的 `Screen` 结构体来存放实现了 `Clone` trait 而不是 `Draw` trait 的类型,像这样:
2017-04-10 13:09:34 +08:00
2017-07-08 16:59:10 +08:00
```rust,ignore
2017-04-10 13:09:34 +08:00
pub struct Screen {
pub components: Vec<Box<Clone>>,
}
```
2017-07-08 16:59:10 +08:00
将会得到如下错误:
2017-04-10 13:09:34 +08:00
2018-02-26 16:52:45 +08:00
```text
2017-04-10 13:09:34 +08:00
error[E0038]: the trait `std::clone::Clone` cannot be made into an object
-->
|
2 | pub components: Vec<Box<Clone>>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::clone::Clone` cannot be
made into an object
|
= note: the trait cannot require that `Self : Sized`
```
2018-02-26 16:52:45 +08:00
这意味着不能以这种方式使用此 trait 作为 trait 对象。如果你对对象安全的更多细节感兴趣,请查看 [Rust RFC 255]。
[Rust RFC 255]: https://github.com/rust-lang/rfcs/blob/master/text/0255-object-safety.md