diff --git a/src/index-list.md b/src/index-list.md index c85fe5ae..11dd59f1 100644 --- a/src/index-list.md +++ b/src/index-list.md @@ -44,10 +44,14 @@ ## A -| 名称 | 关键字 | 简介 | -| ---- | ------ | ------------- | -| [] | | | -| A | KWA | AIntroduction | +| 名称 | 关键字 | 简介 | +| ------------- | -------- | ---------------------------------------------------------------------------------------------------------------------- | +| [array 数组] | 数组 | 长度固定
元素必须有相同的类型
依次线性排列
可以通过索引访问其中的元素
`let a: [i32; 5] = [1, 2, 3, 4, 5];` | +| [array slice] | 数组切片 | `let slice: &[i32] = &a[1..3];` | +| A | KWA | AIntroduction | + +[array 数组]: https://course.rs/basic/compound-type/array.html +[array slice]: https://course.rs/basic/compound-type/array.html#数组切片 [back](#head)