Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update trait.md and destructure_slice.md #191

Merged
merged 9 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions english/src/flow_control/match/destructuring/destructure_slice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# arrays/slices

Like tuples, arrays and slices can be destructured this way:

```rust,editable
fn main() {
// Try changing the values in the array, or make it a slice!
let array = [1, -2, 6];

match array {
// Binds the second and the third elements to the respective variables
[0, second, third] =>
println!("array[0] = 0, array[1] = {}, array[2] = {}", second, third),

// Single values can be ignored with _
[1, _, third] => println!(
"array[0] = 1, array[2] = {} and array[1] was ignored",
third
),

// You can also bind some and ignore the rest
[-1, second, ..] => println!(
"array[0] = -1, array[1] = {} and all the other ones were ignored",
second
),
// The code below would not compile
// [-1, second] => ...

// Or store them in another array/slice (the type depends on
// that of the value that is being matched against)
[3, second, tail @ ..] => println!(
"array[0] = 3, array[1] = {} and the other elements were {:?}",
second, tail
),

// Combining these patterns, we can, for example, bind the first and
// last values, and store the rest of them in a single array
[first, middle @ .., last] => println!(
"array[0] = {}, middle = {:?}, array[2] = {}",
first, middle, last
),
}
}
```

### See also:

[Arrays and Slices](../../../primitives/array.md) and [Binding](../binding.md) for `@` sigil
6 changes: 3 additions & 3 deletions english/src/trait.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ methods from `Animal` with a `Sheep`.
struct Sheep { naked: bool, name: &'static str }

trait Animal {
// Static method signature; `Self` refers to the implementor type.
// Associated function signature; `Self` refers to the implementor type.
fn new(name: &'static str) -> Self;

// Instance method signatures; these will return a string.
// Method signatures; these will return a string.
fn name(&self) -> &'static str;
fn noise(&self) -> &'static str;

Expand Down Expand Up @@ -77,4 +77,4 @@ fn main() {
dolly.shear();
dolly.talk();
}
```
```
45 changes: 45 additions & 0 deletions src/flow_control/match/destructuring/destructure_slice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 数组/切片

像元组一样,数组和切片也可以这样解构:

```rust,editable
fn main() {
// 尝试改变数组中的值,或者将其做成切片!
let array = [1, -2, 6];

match array {
// 将第二个和第三个元素绑定到各自的变量
[0, second, third] =>
println!("array[0] = 0, array[1] = {}, array[2] = {}", second, third),

// 单个值可以用 ‘_’ 忽略
YangFong marked this conversation as resolved.
Show resolved Hide resolved
[1, _, third] => println!(
"array[0] = 1, array[2] = {} and array[1] was ignored",
third
),

// 也可以绑定一些而忽略其余的
YangFong marked this conversation as resolved.
Show resolved Hide resolved
[-1, second, ..] => println!(
"array[0] = -1, array[1] = {} and all the other ones were ignored",
second
),
// 下面的代码无法编译
// [-1, second] => ...

// 或者将它们存储在另一个数组/切片中(类型取决于所匹配的值的类型)。
YangFong marked this conversation as resolved.
Show resolved Hide resolved
[3, second, tail @ ..] => println!(
"array[0] = 3, array[1] = {} and the other elements were {:?}",
second, tail
),

// 结合这些模式,我们可以绑定第一个和最后一个值,并将其余的值存储在单个数组中
YangFong marked this conversation as resolved.
Show resolved Hide resolved
[first, middle @ .., last] => println!(
"array[0] = {}, middle = {:?}, array[2] = {}",
first, middle, last
),
}
}
```

### 参见:
[数组和切片](../../../primitives/array.md) 和 `@`符号用法[绑定](../binding.md)
YangFong marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion src/trait.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
struct Sheep { naked: bool, name: &'static str }

trait Animal {
// 静态方法签名;`Self` 表示实现者类型(implementor type)。
// 关联函数签名;`Self` 表示实现者类型(implementor type)。
fn new(name: &'static str) -> Self;

// 实例方法签名;这些方法将返回一个字符串。
YangFong marked this conversation as resolved.
Show resolved Hide resolved
Expand Down