Merge pull request #391 from Junhuan-Peng/patch-1

Update method.md
pull/394/head
Sunface 3 years ago committed by GitHub
commit 57723d79a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -104,7 +104,7 @@ fn main() {
} }
``` ```
当我们使用 `rect1.width()` 时, Rust 知道我们调用的是它的方法,如果使用 `rect1.witdh`,则是访问它的字段。 当我们使用 `rect1.width()` 时, Rust 知道我们调用的是它的方法,如果使用 `rect1.width`,则是访问它的字段。
一般来说,方法跟字段同名,往往适用于实现 `getter` 访问器,例如: 一般来说,方法跟字段同名,往往适用于实现 `getter` 访问器,例如:
```rust ```rust

Loading…
Cancel
Save