C# 中列表和数组有什么不同?


数组存储相同类型元素的固定大小顺序集合,而列表是泛型集合。

定义列表 -

List<string7gt; myList = new List<string>();

若要设置列表中的元素,需使用 Add 方法 -

myList.Add("Audi");
myList.Add("BMW");
myList.Add("Chevrolet");
myList.Add("Hyundai");

定义数组 -

int[] arr = new int[5];

初始化和设置数组元素 -

int[] arr = new int[5] {23, 14, 11, 78, 56};

更新于: 2020 年 6 月 21 日

8K+ 浏览量

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告