Update book/contents/advance/smart-pointer/cell-refcell.md

pull/361/head
Sunface 3 years ago committed by GitHub
parent e03b0673a0
commit d6f971e652
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -155,7 +155,7 @@ impl Messenger for MsgQueue {
}
```
如上所示,外部库中定义了一个消息发送器特征 `Messenger`,它只有一个用于发送消息的功能:`fn send(&self, msg: String)`,因为发送消息不需要修改自身,因此原作者在定义时,使用了 `&self` 的不可变借用,这个无可厚非。
如上所示,外部库中定义了一个消息发送器特征 `Messenger`,它只有一个发送消息的功能:`fn send(&self, msg: String)`,因为发送消息不需要修改自身,因此原作者在定义时,使用了 `&self` 的不可变借用,这个无可厚非。
我们要在自己的代码中使用该特征实现一个异步消息队列,出于性能的考虑,消息先写到本地缓存(内存)中,然后批量发送出去,因此在 `send` 方法中,需要将消息先行插入到本地缓存 `msg_cache` 中。但是问题来了,该 `send` 方法的签名是 `&self`,因此上述代码会报错:
```console

Loading…
Cancel
Save