Bu Yixin 2 years ago committed by GitHub
parent 91f3dc34d6
commit 817ea006df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -220,7 +220,7 @@ impl Rectangle {
}
```
> Rust 中有一个约定俗的规则,使用 `new` 来作为构造器的名称出于设计上的考虑Rust 特地没有用 `new` 作为关键字
> Rust 中有一个约定俗的规则,使用 `new` 来作为构造器的名称出于设计上的考虑Rust 特地没有用 `new` 作为关键字
因为是函数,所以不能用 `.` 的方式来调用,我们需要用 `::` 来调用,例如 `let sq = Rectangle::new(3, 3);`。这个方法位于结构体的命名空间中:`::` 语法用于关联函数和模块创建的命名空间。

Loading…
Cancel
Save