如何在 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
廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP