From 4204f92f6650a56c969cbafe2530cdda4b5d6ce8 Mon Sep 17 00:00:00 2001 From: "Peng Hailin," Date: Fri, 21 Apr 2023 08:00:28 +0800 Subject: [PATCH] Update Ch10 --- src/Ch10_Generic_Types_Traits_and_Lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ch10_Generic_Types_Traits_and_Lifetimes.md b/src/Ch10_Generic_Types_Traits_and_Lifetimes.md index 9bda44c..463e4b3 100644 --- a/src/Ch10_Generic_Types_Traits_and_Lifetimes.md +++ b/src/Ch10_Generic_Types_Traits_and_Lifetimes.md @@ -1377,7 +1377,7 @@ let s: &'static str = "我有静态的生命周期。"; 在一些错误消息中,或许会看到使用 `'static` 生命周期的建议。不过在将 `'static` 指定为某个引用的生命周期之前,请想一下手头的这个引用,是不是真的会存活到整个程序的生命周期,以及是否想要这个引用存活到程序的整个生命周期。多数时候,某个建议 `'static` 生命周期的错误消息,都是由尝试创建悬空引用,或可行的生命周期不匹配造成的。在这些情况下,解决办法是修复这些问题,而不是指定这个 `'static` 生命周期。 -### 泛型参数、特质边界与生命周期三位一体 +## 泛型参数、特质边界与生命周期三位一体 **Generic Type Parameters, Trait Bounds, and Lifetimes Together**