2018-01-26 14:11:33 +08:00
|
|
|
|
## `RefCell<T>` 和内部可变性模式
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
|
|
|
|
> [ch15-05-interior-mutability.md](https://github.com/rust-lang/book/blob/master/second-edition/src/ch15-05-interior-mutability.md)
|
|
|
|
|
> <br>
|
2018-01-26 14:11:33 +08:00
|
|
|
|
> commit 54169ef43f57847913ebec7e021c1267663a5d12
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!-- I'm concerned here about referencing forward too much, do we need that
|
|
|
|
|
information from Ch 19 to understand this? Should we look at rearranging a few
|
|
|
|
|
things here? -->
|
|
|
|
|
<!-- We don't think the reader needs to *understand* `unsafe` at this point,
|
|
|
|
|
just that `unsafe` is how this is possible and that we'll learn about `unsafe`
|
|
|
|
|
later. After reading this section, did you feel that you needed to know more
|
|
|
|
|
about `unsafe` to understand this section? /Carol -->
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!--below: as in, we use the pattern, or it's used automatically? I'm not clear
|
|
|
|
|
on what's the user's responsibility with this pattern -->
|
|
|
|
|
<!-- When we choose to use types implemented using the interior mutability
|
|
|
|
|
pattern, or when we implement our own types using the interior mutability
|
|
|
|
|
pattern. /Carol -->
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
**内部可变性**(*Interior mutability*)是 Rust 中的一个设计模式,它允许你即使在有不可变引用时改变数据,这通常是借用规则所不允许的。为此,该模式在数据结构中使用 `unsafe` 代码来模糊 Rust 通常的可变性和借用规则。我们还未讲到不安全代码;第十九章会学习它们。当可以确保代码在运行时会遵守借用规则,即使编译器不能保证的情况,可以选择使用那些运用内部可变性模式的类型。所涉及的 `unsafe` 代码将被封装进安全的 API 中,而外部类型仍然是不可变的。
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
让我们通过遵循内部可变性模式的 `RefCell<T>` 类型来开始探索。
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
### 通过 `RefCell<T>` 在运行时检查借用规则
|
|
|
|
|
|
|
|
|
|
不同于 `Rc<T>`,`RefCell<T>` 代表其数据的唯一的所有权。那么是什么让 `RefCell<T>` 不同于像 `Box<T>` 这样的类型呢?回忆一下第四章所学的借用规则:
|
|
|
|
|
|
|
|
|
|
1. 在任意给定时间,**只能** 拥有如下中的一个:
|
2017-03-16 00:02:13 +08:00
|
|
|
|
* 一个可变引用。
|
2017-12-22 16:14:23 +08:00
|
|
|
|
* 任意数量的不可变引用。
|
2017-03-16 00:02:13 +08:00
|
|
|
|
2. 引用必须总是有效的。
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
对于引用和 `Box<T>`,借用规则的不可变性作用于编译时。对于 `RefCell<T>`,这些不可变性作用于 **运行时**。对于引用,如果违反这些规则,会得到一个编译错误。而对于`RefCell<T>`,违反这些规则会 `panic!`。
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!-- Is there an advantage to having these rules enforced at different times?
|
|
|
|
|
-->
|
|
|
|
|
<!-- Yes, that's what we were trying to say below, we've tried to make this more explicit /Carol -->
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
在编译时检查借用规则的好处是这些错误将在开发过程的早期被捕获同时对没有运行时性能影响,因为所有的分析都提前完成了。为此,在编译时检查借用规则是大部分情况的最佳选择,这也正是其为何是 Rust 的默认行为。
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
相反在运行时检查借用规则的好处是特定内存安全的场景是允许的,而它们在编译时检查中是不允许的。静态分析,正如 Rust 编译器,是天生保守的。代码的一些属性则不可能通过分析代码发现:其中最著名的就是 [停机问题(Halting Problem)](https://zh.wikipedia.org/wiki/%E5%81%9C%E6%9C%BA%E9%97%AE%E9%A2%98),这超出了本书的范畴,不过如果你感兴趣的话这是一个值得研究的有趣主题。
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!--below: can't be sure of what, exactly? Sure that the code complies with the
|
|
|
|
|
ownership rules? -->
|
|
|
|
|
<!-- Yes /Carol -->
|
2017-03-16 00:02:13 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
因为一些分析是不可能的,如果 Rust 编译器不能通过所有权规则编译,它可能会拒绝一个正确的程序;从这种角度考虑它是保守的。如果 Rust 接受不正确的程序,那么人们也就不会相信 Rust 所做的保证了。然而,如果 Rust 拒绝正确的程序,会给程序员带来不便,但不会带来灾难。`RefCell<T>` 正是用于当你确信代码遵守借用规则,而编译器不能理解和确定的时候。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
类似于 `Rc<T>`,`RefCell<T>` 只能用于单线程场景。如果尝试在多线程上下文中使用`RefCell<T>`,会得到一个编译错误。第十六章会介绍如何在多线程程序中使用 `RefCell<T>` 的功能。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!-- I'm not really clear at this point what the difference between Rc<T> and
|
|
|
|
|
RefCell<T> is, perhaps a succinct round up would help? -->
|
|
|
|
|
<!-- Done /Carol -->
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
如下为选择 `Box<T>`,`Rc<T>` 或 `RefCell<T>` 的理由:
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
- `Rc<T>` 允许相同数据有多个所有者;`Box<T>` 和 `RefCell<T>` 有单一所有者。
|
2018-02-01 15:27:03 +08:00
|
|
|
|
- `Box<T>` 允许在编译时执行不可变(或可变)借用检查;`Rc<T>`仅允许在编译时执行不可变借用检查;`RefCell<T>` 允许在运行时执行不可变(或可变)借用检查。
|
|
|
|
|
- 因为 `RefCell<T>` 允许在运行时执行可变借用检查,所以我们可以在即便 `RefCell<T>` 自身是不可变的情况下修改其内部的值。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-04-02 08:51:52 +08:00
|
|
|
|
最后一个理由便是指 **内部可变性** 模式。让我们看看何时内部可变性是有用的,并讨论这是如何成为可能的。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
### 内部可变性:不可变值的可变借用
|
|
|
|
|
|
|
|
|
|
借用规则的一个推论是当有一个不可变值时,不能可变的借用它。例如,如下代码不能编译:
|
|
|
|
|
|
|
|
|
|
```rust,ignore
|
2017-03-17 00:00:53 +08:00
|
|
|
|
fn main() {
|
2018-01-26 14:11:33 +08:00
|
|
|
|
let x = 5;
|
|
|
|
|
let y = &mut x;
|
2017-03-17 00:00:53 +08:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
如果尝试编译,会得到如下错误:
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
```text
|
|
|
|
|
error[E0596]: cannot borrow immutable local variable `x` as mutable
|
|
|
|
|
--> src/main.rs:3:18
|
|
|
|
|
|
|
|
|
|
|
2 | let x = 5;
|
|
|
|
|
| - consider changing this to `mut x`
|
|
|
|
|
3 | let y = &mut x;
|
|
|
|
|
| ^ cannot borrow mutably
|
2017-03-17 00:00:53 +08:00
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
然而,特定情况下在值的方法内部能够修改自身是很有用的;而不是在其他代码中,此时值仍然是不可变。值方法外部的代码不能修改其值。`RefCell<T>` 是一个获得内部可变性的方法。`RefCell<T>` 并没有完全绕开借用规则,编译器中的借用检查器允许内部可变性并相应的在运行时检查借用规则。如果违反了这些规则,会得到 `panic!` 而不是编译错误。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
让我们通过一个实际的例子来探索何处可以使用 `RefCell<T>` 来修改不可变值并看看为何这么做是有意义的。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
#### 内部可变性的用例:mock 对象
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
**测试替身**(*test double*)是一个通用编程概念,它代表一个在测试中替代某个类型的类型。**mock 对象** 是特定类型的测试替身,它们记录测试过程中发生了什么以便可以断言操作是正确的。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
虽然 Rust 没有与其他语言中的对象完全相同的对象,Rust 也没有像其他语言那样在标准库中内建 mock 对象功能,不过我们确实可以创建一个与 mock 对象有着相同功能的结构体。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
如下是一个我们想要测试的场景:我们在编写一个记录某个值与最大值的差距的库,并根据当前值与最大值的差距来发送消息。例如,这个库可以用于记录用户所允许的 API 调用数量限额。
|
|
|
|
|
|
|
|
|
|
该库只提供记录与最大值的差距,以及何种情况发送什么消息的功能。使用此库的程序则期望提供实际发送消息的机制:程序可以选择记录一条消息、发送 email、发送短信等等。库本身无需知道这些细节;只需实现其提供的 `Messenger` trait 即可。示例 15-23 展示了库代码:
|
|
|
|
|
|
|
|
|
|
<span class="filename">文件名: src/lib.rs</span>
|
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
pub trait Messenger {
|
|
|
|
|
fn send(&self, msg: &str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct LimitTracker<'a, T: 'a + Messenger> {
|
|
|
|
|
messenger: &'a T,
|
|
|
|
|
value: usize,
|
|
|
|
|
max: usize,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a, T> LimitTracker<'a, T>
|
|
|
|
|
where T: Messenger {
|
|
|
|
|
pub fn new(messenger: &T, max: usize) -> LimitTracker<T> {
|
|
|
|
|
LimitTracker {
|
|
|
|
|
messenger,
|
|
|
|
|
value: 0,
|
|
|
|
|
max,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_value(&mut self, value: usize) {
|
|
|
|
|
self.value = value;
|
|
|
|
|
|
|
|
|
|
let percentage_of_max = self.value as f64 / self.max as f64;
|
|
|
|
|
|
|
|
|
|
if percentage_of_max >= 0.75 && percentage_of_max < 0.9 {
|
|
|
|
|
self.messenger.send("Warning: You've used up over 75% of your quota!");
|
|
|
|
|
} else if percentage_of_max >= 0.9 && percentage_of_max < 1.0 {
|
|
|
|
|
self.messenger.send("Urgent warning: You've used up over 90% of your quota!");
|
|
|
|
|
} else if percentage_of_max >= 1.0 {
|
|
|
|
|
self.messenger.send("Error: You are over your quota!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-17 00:00:53 +08:00
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<span class="caption">示例 15-23:一个记录某个值与最大值差距的库,并根据此值的特定级别发出警告</span>
|
|
|
|
|
|
2018-02-19 22:14:54 +08:00
|
|
|
|
这些代码中一个重要部分是拥有一个方法 `send` 的 `Messenger` trait,其获取一个 `self` 的不可变引用和文本信息。这是我们的 mock 对象所需要拥有的接口。另一个重要的部分是我们需要测试 `LimitTracker` 的 `set_value` 方法的行为。可以改变传递的 `value` 参数的值,不过 `set_value` 并没有返回任何可供断言的值。也就是说,如果使用某个实现了 `Messenger` trait 的值和特定的 `max` 创建 `LimitTracker`,当传递不同 `value` 值时,消息发送者应被告知发送合适的消息。
|
2018-01-26 14:11:33 +08:00
|
|
|
|
|
|
|
|
|
我们所需的 mock 对象是,调用 `send` 不同于实际发送 email 或短息,其只记录信息被通知要发送了。可以新建一个 mock 对象示例,用其创建 `LimitTracker`,调用 `LimitTracker` 的 `set_value` 方法,然后检查 mock 对象是否有我们期望的消息。示例 15-24 展示了一个如此尝试的 mock 对象实现,不过借用检查器并不允许:
|
|
|
|
|
|
|
|
|
|
<span class="filename">文件名: src/lib.rs</span>
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
```rust
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
|
|
struct MockMessenger {
|
|
|
|
|
sent_messages: Vec<String>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl MockMessenger {
|
|
|
|
|
fn new() -> MockMessenger {
|
|
|
|
|
MockMessenger { sent_messages: vec![] }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Messenger for MockMessenger {
|
|
|
|
|
fn send(&self, message: &str) {
|
|
|
|
|
self.sent_messages.push(String::from(message));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn it_sends_an_over_75_percent_warning_message() {
|
|
|
|
|
let mock_messenger = MockMessenger::new();
|
|
|
|
|
let mut limit_tracker = LimitTracker::new(&mock_messenger, 100);
|
|
|
|
|
|
|
|
|
|
limit_tracker.set_value(80);
|
|
|
|
|
|
|
|
|
|
assert_eq!(mock_messenger.sent_messages.len(), 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-17 00:00:53 +08:00
|
|
|
|
```
|
2018-01-26 14:11:33 +08:00
|
|
|
|
|
|
|
|
|
<span class="caption">示例 15-24:尝试实现 `MockMessenger`,借用检查器并不允许</span>
|
|
|
|
|
|
|
|
|
|
测试代码定义了一个 `MockMessenger` 结构体,其 `sent_messages` 字段为一个 `String` 值的 `Vec` 用来记录被告知发送的消息。我们还定义了一个关联函数 `new` 以便于新建从空消息列表开始的 `MockMessenger` 值。接着为 `MockMessenger` 实现 `Messenger` trait 这样就可以为 `LimitTracker` 提供一个 `MockMessenger`。在 `send` 方法的定义中,获取传入的消息作为参数并储存在 `MockMessenger` 的 `sent_messages` 列表中。
|
|
|
|
|
|
|
|
|
|
在测试中,我们测试了当 `LimitTracker` 被告知将 `value` 设置为超过 `max` 值 75% 的某个值。首先新建一个 `MockMessenger`,其从空消息列表开始。接着新建一个 `LimitTracker` 并传递新建 `MockMessenger` 的引用和 `max` 值 100。我们使用值 80 调用 `LimitTracker` 的 `set_value` 方法,这超过了 100 的 75%。接着断言 `MockMessenger` 中记录的消息列表应该有一条消息。
|
|
|
|
|
|
|
|
|
|
然而,这个测试是有问题的:
|
|
|
|
|
|
|
|
|
|
```text
|
|
|
|
|
error[E0596]: cannot borrow immutable field `self.sent_messages` as mutable
|
|
|
|
|
--> src/lib.rs:46:13
|
|
|
|
|
|
|
|
|
|
|
45 | fn send(&self, message: &str) {
|
|
|
|
|
| ----- use `&mut self` here to make mutable
|
|
|
|
|
46 | self.sent_messages.push(String::from(message));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ cannot mutably borrow immutable field
|
2017-03-17 00:00:53 +08:00
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
不能修改 `MockMessenger` 来记录消息,因为 `send` 方法获取 `self` 的不可变引用。我们也不能参考错误文本的建议使用 `&mut self` 替代,因为这样 `send` 的签名就不符合 `Messenger` trait 定义中的签名了(请随意尝试如此修改并看看会出现什么错误信息)。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
这正是内部可变性的用武之地!我们将通过 `RefCell` 来储存 `sent_messages`,然而 `send` 将能够修改 `sent_messages` 并储存消息。示例 15-25 展示了代码:
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<span class="filename">文件名: src/lib.rs</span>
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
```rust
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::*;
|
|
|
|
|
use std::cell::RefCell;
|
|
|
|
|
|
|
|
|
|
struct MockMessenger {
|
|
|
|
|
sent_messages: RefCell<Vec<String>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl MockMessenger {
|
|
|
|
|
fn new() -> MockMessenger {
|
|
|
|
|
MockMessenger { sent_messages: RefCell::new(vec![]) }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Messenger for MockMessenger {
|
|
|
|
|
fn send(&self, message: &str) {
|
|
|
|
|
self.sent_messages.borrow_mut().push(String::from(message));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn it_sends_an_over_75_percent_warning_message() {
|
|
|
|
|
// --snip--
|
|
|
|
|
# let mock_messenger = MockMessenger::new();
|
|
|
|
|
# let mut limit_tracker = LimitTracker::new(&mock_messenger, 100);
|
|
|
|
|
# limit_tracker.set_value(75);
|
|
|
|
|
|
|
|
|
|
assert_eq!(mock_messenger.sent_messages.borrow().len(), 1);
|
|
|
|
|
}
|
2017-03-17 00:00:53 +08:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<span class="caption">示例 15-25:使用 `RefCell<T>` 能够在外部值被认为是不可变的情况下修改内部值</span>
|
|
|
|
|
|
|
|
|
|
现在 `sent_messages` 字段的类型是 `RefCell<Vec<String>>` 而不是 `Vec<String>`。在 `new` 函数中新建了一个 `RefCell` 示例替代空 vector。
|
|
|
|
|
|
|
|
|
|
对于 `send` 方法的实现,第一个参数仍为 `self` 的不可变借用,这是符合方法定义的。我们调用 `self.sent_messages` 中 `RefCell` 的 `borrow_mut` 方法来获取 `RefCell` 中值的可变引用,这是一个 vector。接着可以对 vector 的可变引用调用 `push` 以便记录测试过程中看到的消息。
|
|
|
|
|
|
|
|
|
|
最后必须做出的修改位于断言中:为了看到其内部 vector 中有多少个项,需要调用 `RefCell` 的 `borrow` 以获取 vector 的不可变引用。
|
|
|
|
|
|
|
|
|
|
现在我们见识了如何使用 `RefCell<T>`,让我们研究一下它怎样工作的!
|
|
|
|
|
|
|
|
|
|
### `RefCell<T>` 在运行时检查借用规则
|
|
|
|
|
|
|
|
|
|
当创建不可变和可变引用时,我们分别使用 `&` 和 `&mut` 语法。对于 `RefCell<T>` 来说,则是 `borrow` 和 `borrow_mut` 方法,这属于 `RefCell<T>` 安全 API 的一部分。`borrow` 方法返回 `Ref` 类型的智能指针,`borrow_mut` 方法返回 `RefMut` 类型的智能指针。这两个类型都实现了 `Deref` 所以可以当作常规引用对待。
|
|
|
|
|
|
|
|
|
|
<!-- can you clarify what you mean, practically, by "track borrows
|
|
|
|
|
dynamically"?-->
|
|
|
|
|
<!-- Yep, we've tried to clarify in the next paragraph. /Carol -->
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
`RefCell<T>` 记录当前有多少个活动的 `Ref` 和 `RefMut` 智能指针。每次调用 `borrow`,`RefCell<T>` 将活动的不可变借用计数加一。当 `Ref` 值离开作用域时,不可变借用计数减一。就像编译时借用规则一样,`RefCell<T>` 在任何时候只允许有多个不可变借用或一个可变借用。
|
|
|
|
|
|
|
|
|
|
如果我们尝试违反这些规则,相比引用时的编译时错误,`RefCell<T>` 的实现会在运行时 `panic!`。示例 15-26 展示了对示例 15-25 中 `send` 实现的修改,这里我们故意尝试在相同作用域创建两个可变借用以便演示 `RefCell<T>` 不允许我们在运行时这么做:
|
|
|
|
|
|
|
|
|
|
<span class="filename">文件名: src/lib.rs</span>
|
|
|
|
|
|
|
|
|
|
```rust,ignore
|
|
|
|
|
impl Messenger for MockMessenger {
|
|
|
|
|
fn send(&self, message: &str) {
|
|
|
|
|
let mut one_borrow = self.sent_messages.borrow_mut();
|
|
|
|
|
let mut two_borrow = self.sent_messages.borrow_mut();
|
|
|
|
|
|
|
|
|
|
one_borrow.push(String::from(message));
|
|
|
|
|
two_borrow.push(String::from(message));
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-17 00:00:53 +08:00
|
|
|
|
```
|
2018-01-26 14:11:33 +08:00
|
|
|
|
|
2018-03-14 09:00:03 +08:00
|
|
|
|
<span class="caption">示例 15-26:在同一作用域中创建两个可变引用并观察 `RefCell<T>` panic</span>
|
2018-01-26 14:11:33 +08:00
|
|
|
|
|
|
|
|
|
这里为 `borrow_mut` 返回的 `RefMut` 智能指针创建了 `one_borrow` 变量。接着用相同的方式在变量 `two_borrow` 创建了另一个可变借用。这会在相同作用域中创建一个可变引用,这是不允许的,如果运行库的测试,编译时不会有任何错误,不过测试会失败:
|
|
|
|
|
|
|
|
|
|
```text
|
|
|
|
|
---- tests::it_sends_an_over_75_percent_warning_message stdout ----
|
|
|
|
|
thread 'tests::it_sends_an_over_75_percent_warning_message' panicked at
|
|
|
|
|
'already borrowed: BorrowMutError', src/libcore/result.rs:906:4
|
2017-03-17 00:00:53 +08:00
|
|
|
|
note: Run with `RUST_BACKTRACE=1` for a backtrace.
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
可以看到代码 panic 和信息`already borrowed: BorrowMutError`。这也就是 `RefCell<T>` 如何在运行时处理违反借用规则的情况。
|
|
|
|
|
|
|
|
|
|
在运行时捕获借用错误而不是编译时意味着将会在开发过程的后期才会发现错误 ———— 甚至有可能发布到生产环境才发现。还会因为在运行时而不是编译时记录借用而导致少量的运行时性能惩罚。然而,使用 `RefCell` 使得在只允许不可变值的上下文中编写修改自身以记录消息的 mock 对象成为可能。虽然有取舍,但是我们可以选择使用 `RefCell<T>` 来获得比常规引用所能提供的更多的功能。
|
|
|
|
|
|
|
|
|
|
### 结合 `Rc<T>` 和 `RefCell<T>` 来拥有多个可变数据所有者
|
|
|
|
|
|
|
|
|
|
`RefCell<T>` 的一个常见用法是与 `Rc<T>` 结合。回忆一下 `Rc<T>` 允许对相同数据有多个所有者,不过只能提供数据的不可变访问。如果有一个储存了 `RefCell<T>` 的 `Rc<T>` 的话,就可以得到有多个所有者 **并且** 可以修改的值了!
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!-- maybe just recap on why we'd want that? -->
|
|
|
|
|
<!-- done, below /Carol -->
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
例如,回忆示例 15-13 的 cons list 的例子中使用 `Rc<T>` 使得多个列表共享另一个列表的所有权。因为 `Rc<T>` 只存放不可变值,所以一旦创建了这些列表值后就不能修改。让我们加入 `RefCell<T>` 来获得修改列表中值的能力。示例 15-27 展示了通过在 `Cons` 定义中使用 `RefCell<T>`,我们就允许修改所有列表中的值了:
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-17 17:08:39 +08:00
|
|
|
|
<span class="filename">文件名: src/main.rs</span>
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
enum List {
|
|
|
|
|
Cons(Rc<RefCell<i32>>, Rc<List>),
|
|
|
|
|
Nil,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
use List::{Cons, Nil};
|
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
use std::cell::RefCell;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let value = Rc::new(RefCell::new(5));
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
let a = Rc::new(Cons(Rc::clone(&value), Rc::new(Nil)));
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
let b = Cons(Rc::new(RefCell::new(6)), Rc::clone(&a));
|
|
|
|
|
let c = Cons(Rc::new(RefCell::new(10)), Rc::clone(&a));
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
|
|
|
|
*value.borrow_mut() += 10;
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
println!("a after = {:?}", a);
|
2017-03-17 00:00:53 +08:00
|
|
|
|
println!("b after = {:?}", b);
|
|
|
|
|
println!("c after = {:?}", c);
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<span class="caption">示例 15-27:使用 `Rc<RefCell<i32>>` 创建可以修改的 `List`</span>
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
这里创建了一个 `Rc<RefCell<i32>` 实例并储存在变量 `value` 中以便之后直接访问。接着在 `a` 中用包含 `value` 的 `Cons` 成员创建了一个 `List`。需要克隆 `value` 以便 `a` 和 `value` 都能拥有其内部值 `5` 的所有权,而不是将所有权从 `value` 移动到 `a` 或者让 `a` 借用 `value`。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
<!-- above: so that `value` has ownership of what, in addition to a? I didn't
|
|
|
|
|
follow the final sentence above -->
|
|
|
|
|
<!-- Of the inner value, I've tried to clarify /Carol -->
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
我们将列表 `a` 封装进了 `Rc<T>` 这样当创建列表 `b` 和 `c` 时,他们都可以引用 `a`,正如示例 15-13 一样。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
一旦创建了列表 `a`、`b` 和 `c`,我们将 `value` 的值加 10。为此对 `value` 调用了 `borrow_mut`,这里使用了第五章讨论的自定解引用功能(“`->`运算符到哪去了?”)来解引用 `Rc<T>` 以获取其内部的 `RefCell<T>` 值。`borrow_mut` 方法返回 `RefMut<T>` 智能指针,可以对其使用解引用运算符并修改其内部值。
|
|
|
|
|
|
|
|
|
|
当我们打印出 `a`、`b` 和 `c` 时,可以看到他们都拥有修改后的值 15 而不是 5:
|
|
|
|
|
|
|
|
|
|
```text
|
|
|
|
|
a after = Cons(RefCell { value: 15 }, Nil)
|
2017-03-17 00:00:53 +08:00
|
|
|
|
b after = Cons(RefCell { value: 6 }, Cons(RefCell { value: 15 }, Nil))
|
|
|
|
|
c after = Cons(RefCell { value: 10 }, Cons(RefCell { value: 15 }, Nil))
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
这是非常巧妙的!通过使用 `RefCell<T>`,我们可以拥有一个表面上不可变的 `List`,不过可以使用 `RefCell<T>` 中提供内部可变性的方法来在需要时修改数据。`RefCell<T>` 的运行时借用规则检查也确实保护我们免于出现数据竞争,而且我们也决定牺牲一些速度来换取数据结构的灵活性。
|
2017-03-17 00:00:53 +08:00
|
|
|
|
|
2018-01-26 14:11:33 +08:00
|
|
|
|
标准库中也有其他提供内部可变性的类型,比如 `Cell<T>`,它有些类似(`RefCell<T>`)除了相比提供内部值的引用,其值被拷贝进和拷贝出 `Cell<T>`。还有 `Mutex<T>`,其提供线程间安全的内部可变性,下一章并发会讨论它的应用。请查看标准库来获取更多细节和不同类型之间的区别。
|