From 6374fa93ba508bc55b7d9ae48c3a6138391f25d4 Mon Sep 17 00:00:00 2001 From: chenxiaochun Date: Wed, 27 Apr 2022 08:19:55 +0800 Subject: [PATCH] Update module.md --- src/basic/crate-module/module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/crate-module/module.md b/src/basic/crate-module/module.md index eba9d122..3bc217f1 100644 --- a/src/basic/crate-module/module.md +++ b/src/basic/crate-module/module.md @@ -127,7 +127,7 @@ front_of_house::hosting::add_to_waitlist(); 如果只是为了引用到指定模块中的对象,那么两种都可以,但是在实际使用时,需要遵循一个原则:**当代码被挪动位置时,尽量减少引用路径的修改**,相信大家都遇到过,修改了某处代码,导致所有路径都要挨个替换,这显然不是好的路径选择。 -回到之前的例子,如果我们把 `front_of_house` 模块和 `eat_at_restaurant` 移动到一个模块中 `customer_experience`,那么绝对路径的引用方式就必须进行修改:`crate::customer_experience::front_of_house ...`,但是假设我们使用的相对路径,那么该路径就无需修改,因为它们两的相对位置其实没有变: +回到之前的例子,如果我们把 `front_of_house` 模块和 `eat_at_restaurant` 移动到一个模块中 `customer_experience`,那么绝对路径的引用方式就必须进行修改:`crate::customer_experience::front_of_house ...`,但是假设我们使用的相对路径,那么该路径就无需修改,因为它们两个的相对位置其实没有变: ```console crate