From 344b8ce0d43ed66f946b0328cd01bd987af82fda Mon Sep 17 00:00:00 2001 From: Allan Downey Date: Sun, 8 May 2022 10:47:48 +0800 Subject: [PATCH] update(index-list): add Vector --- src/index-list.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/index-list.md b/src/index-list.md index a24d451e..66045c00 100644 --- a/src/index-list.md +++ b/src/index-list.md @@ -362,9 +362,15 @@ ## V -| 名称 | 关键字 | 简介 | -| ---- | ------ | ---- | -| | KWV | | +| 名称 | 关键字 | 简介 | +| ----------------- | -------- | ---------------------------------------------------------------------------------------------- | +| [Vector 动态数组] | 动态数组 | `Vec`,动态数组允许你存储多个值,这些值在内存中一个紧挨着另一个排列。只能存储相同类型的元素 | +| `Vec::new` | | 创建动态数组 | +| `vec![]` | | 创建动态数组,能在创建时给予初始化值 | +| `Vec::push` | | 向数组尾部添加元素,必须声明为 `mut` | +| | KWV | | + +[vector 动态数组]: https://course.rs/basic/collections/vector.html [back](#head)