static method -> associated function

This commit is contained in:
Steve Klabnik 2015-05-11 18:22:49 -04:00
parent a90dd32949
commit 42240dccb6

View File

@ -127,12 +127,12 @@ fn grow(&self) -> Circle {
We just say were returning a `Circle`. With this method, we can grow a new
circle to any arbitrary size.
# Static methods
# Associated functions
You can also define static methods that do not take a `self` parameter. Heres a
pattern thats very common in Rust code:
You can also define associated functions that do not take a `self` parameter.
Heres a pattern thats very common in Rust code:
```
```rust
struct Circle {
x: f64,
y: f64,