阅读量:0
在C#中,Vector
并不是一个内置的类型
以下是使用 List<T>
的示例:
using System; using System.Collections.Generic; class Program { static void Main() { // 创建一个 List<int> 对象 List<int> myList = new List<int>(); // 向 List 中添加元素 myList.Add(1); myList.Add(2); myList.Add(3); // 输出 List 中的所有元素 foreach (int element in myList) { Console.WriteLine(element); } } }
如果你确实需要一个可变大小的数组,那么 List<T>
是一个很好的选择。但是,如果你需要一个固定大小的数组,你应该使用 C# 的数组类型。这里有一个创建和操作数组的简单示例:
using System; class Program { static void Main() { // 创建一个 int[] 数组,大小为 3 int[] myArray = new int[3]; // 向数组中添加元素(这里实际上是赋值) myArray[0] = 1; myArray[1] = 2; myArray[2] = 3; // 输出数组中的所有元素 for (int i = 0; i < myArray.Length; i++) { Console.WriteLine(myArray[i]); } } }
请注意,数组的大小在创建时就已经确定,无法更改。如果你需要添加或删除元素,请使用 List<T>
。