c#數(shù)組怎么定義和賦值

c#
小億
186
2023-08-18 02:40:27

在C#中,可以使用以下方式定義和賦值數(shù)組:

  1. 使用數(shù)組初始化器:
int[] numbers = { 1, 2, 3, 4, 5 };
  1. 使用new關(guān)鍵字和數(shù)組大小進(jìn)行定義:
int[] numbers = new int[5];

然后使用索引進(jìn)行賦值:

numbers[0] = 1;
numbers[1] = 2;
numbers[2] = 3;
numbers[3] = 4;
numbers[4] = 5;
  1. 使用new關(guān)鍵字和初始化數(shù)組元素的值進(jìn)行定義:
int[] numbers = new int[] { 1, 2, 3, 4, 5 };

注意:數(shù)組的索引從0開(kāi)始,所以在使用索引進(jìn)行賦值時(shí),需要注意索引的范圍。

0