C# 中的二维数组是什么?
二维数组是一维数组的列表。
可以通过为每一行的括号内指定值来初始化二维数组。
int [,] a = new int [2,2] {
{0, 1} ,
{4, 5}
};以下是一个展示如何在 C# 中操作二维数组的示例 −
using System;
namespace ArrayApplication {
class MyArray {
static void Main(string[] args) {
/* an array with 3 rows and 2 columns*/
int[,] a = new int[3, 2] {{0,0}, {1,2}, {2,4} };
int i, j;
/* output each array element's value */
for (i = 0; i < 3; i++) {
for (j = 0; j < 2; j++) {
Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]);
}
}
Console.ReadKey();
}
}
}
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP