Update ch04-01-what-is-ownership.md (#107)

Co-authored-by: YangQi <2419731931@qq.com>
This commit is contained in:
focksor surooi 2022-12-16 15:48:32 +08:00 committed by GitHub
parent 1d5cf361c6
commit c07ee4d0d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ let s = "hello";
let s = String::from("hello");
```
这两个冒号(`::`)是运算符,允许将特定的 `from` 函数置于 `String` 类型的命名空间namespace而不需要使用类似 `string_from` 这样的名字。在第 5 章的[“方法语法”“Method Syntax”][method-syntax]<!-- ignore -->部分会着重讲解这个语法而且在第 7 章的[“路径用于引用模块树中的项”][paths-module-tree]<!-- ignore -->会讲到模块的命名空间
双冒号(`::`)运算符允许我们将特定的 `from` 函数置于 `String` 类型的命名空间namespace而不需要使用类似 `string_from` 这样的名字。我们将在第 5 章的[“方法语法”“Method Syntax”][method-syntax]<!-- ignore -->以及第 7 章的[“路径用于引用模块树中的项”][paths-module-tree]<!-- ignore -->讨论模块的命名空间时,再详细说明此语法
**可以** 修改此类字符串