我们如何在 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] = 0
a[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

更新时间:23-6-2020

147 次浏览

开启您的职业生涯

完成课程以获得认证

开始
广告
© . All rights reserved.