在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>
。