数组是相同类型的变量的集合。它们存储在连续的内存位置。最低地址对应于第一个元素,最高地址对应于最后一个元素。
在C#中声明数组-
type[] arrayName;
这里,
类型-是在C#数组的数据类型。
arrayName-数组的名称
[] -指定数组的大小。
让我们看一个例子,以了解如何在C#中声明数组-
using System; namespace MyApplication { class MyClass { static void Main(string[] args) { //n是5个整数的数组 int [] a = new int[5]; int i,j; /* initialize elements of array a */ for ( i = 0; i < 5; i++ ) { a[ i ] = i + 10; } /* output each array element's value */ for (j = 0; j < 5; j++ ) { Console.WriteLine("Element[{0}] = {1}", j, a[j]); } Console.ReadKey(); } } }
输出结果
Element[0] = 10 Element[1] = 11 Element[2] = 12 Element[3] = 13 Element[4] = 14