如何在C#中定义多维数组?
C#允许多维数组。它包括一个具有多个维的数组。将字符串的二维数组声明为-
string [,] names;
二维数组可以看作是一个表,它具有x的行数和y的列数。
可以通过为每行指定括号中的值来初始化多维数组。以下数组有4行,每行有4列。
int [,] a = new int [4,4] {{0, 1, 2, 3} , /* initializers for row indexed by 0 */
{4, 5, 6, 7} , /* initializers for row indexed by 1 */
{8, 9, 10, 11} /* initializers for row indexed by 2 */
{12, 13, 14, 15} /* initializers for row indexed by 3 */
};
让我们看一个例子来学习如何在C#中使用多维数组-
示例
using System;namespace Program {
class Demo {
static void Main(string[] args) {
/* an array with 5 rows and 2 columns*/
int[,] a = new int[5, 2] {{0,0}, {1,2}, {2,4}, {3,6}, {4,8} };
int i, j;
/* output each array element's value */
for (i = 0; i < 5; i++) {
for (j = 0; j < 2; j++) {
Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]);
}
}
Console.ReadKey();
}
}
}
输出结果
a[0,0] = 0a[0,1] = 0
a[1,0] = 1
a[1,1] = 2
a[2,0] = 2
a[2,1] = 4
a[3,0] = 3
a[3,1] = 6
a[4,0] = 4
a[4,1] = 8
以上是 如何在C#中定义多维数组? 的全部内容, 来源链接: utcz.com/z/316161.html