From 6d080e17a3dd3e378f31524fb2217049a1992f2b Mon Sep 17 00:00:00 2001 From: sunface Date: Fri, 11 Feb 2022 13:51:29 +0800 Subject: [PATCH] update readme.md --- README.md | 2 +- book/contents/advance/lifetime/static.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b7f509d6..2c1422b3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - 国内镜像: https://book.rust.team - 知乎: [支持章节内目录跳转,很好用!](https://www.zhihu.com/column/c_1452781034895446017) -- 最近修订: 新增章节 [进阶错误处理](https://zhuanlan.zhihu.com/p/465842938) +- 最近修订: 2022-02-11 新增 [&'static 和 T: 'static](https://zhuanlan.zhihu.com/p/466171521) - Rust版本: Rust edition 2021 - QQ交流群:1009730433 diff --git a/book/contents/advance/lifetime/static.md b/book/contents/advance/lifetime/static.md index 204dacbf..7b20f80b 100644 --- a/book/contents/advance/lifetime/static.md +++ b/book/contents/advance/lifetime/static.md @@ -160,4 +160,5 @@ error[E0597]: `s1` does not live long enough - 如果你需要添加 `&'static` 来让代码工作,那很可能是设计上出问题了 - 如果你希望满足和取悦编译器,那就使用 `T: 'static`,很多时候它都能解决问题 -> 一个小知识,在 Rust 标准库中,有 48 处用到了 &'static ,112 处用到了 `T: 'static` ,看来取悦编译器不仅仅是菜鸟需要的,高手也经常用到 :) \ No newline at end of file +> 一个小知识,在 Rust 标准库中,有 48 处用到了 &'static ,112 处用到了 `T: 'static` ,看来取悦编译器不仅仅是菜鸟需要的,高手也经常用到 :) +