From a9973285710aecd876c06327fc211646716af83e Mon Sep 17 00:00:00 2001 From: Jesse <35264598+JesseAtSZ@users.noreply.github.com> Date: Tue, 11 Jan 2022 10:28:31 +0800 Subject: [PATCH] Update ownership.md --- book/contents/basic/ownership/ownership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/basic/ownership/ownership.md b/book/contents/basic/ownership/ownership.md index 3fe453b6..7002dbe5 100644 --- a/book/contents/basic/ownership/ownership.md +++ b/book/contents/basic/ownership/ownership.md @@ -5,7 +5,7 @@ - **手动管理内存的分配和释放**, 在程序中,通过函数调用的方式来申请和释放内存,典型代表:C++ - **通过所有权来管理内存**,编译器在编译时会根据一系列规则进行检查 -其中Rust选择了第三种,最妙的是,这种机制只发生在编译期,因此对于程序运行期,不会有任何性能上的损失。 +其中Rust选择了第三种,最妙的是,这种检查只发生在编译期,因此对于程序运行期,不会有任何性能上的损失。 由于所有权是一个新概念,因此读者需要花费一些时间来掌握它,一旦掌握,海阔天空任你飞跃,在本章,我们将通过`字符串`来引导讲解所有权的相关知识。