C# 中的数组数组称为锯齿数组。要声明交错数组,请使用双精度 [ ][ ]。
现在让我们声明它们 -
int [][] marks;
现在,让我们初始化它,其中标记是 5 个整数的数组 -
int[][] marks = new int[][]{new int[]{ 90,95 },new int[]{ 89,94 }, new int[]{ 78,87 },new int[]{ 76, 68 }, new int[]{ 98, 91 } };
让我们现在看一下C#中关于锯齿数组的完整示例,并学习如何实现它 −
实时演示
using System; namespace MyApplication { class MyDemoClass { static void Main(string[] args) { int i, j; /* jagged array of 5 array of integers */ int[][] marks = new int[][]{new int[]{90,95},new int[]{89,94}, new int[]{78,87},new int[]{ 76, 68 }, new int[]{ 98, 91}}; for (i = 0; i < 5; i++) { for (j = 0; j < 2; j++) { Console.WriteLine("marks[{0}][{1}] = {2}", i, j, marks[i][j]); } } Console.ReadKey(); } } }
marks[0][0] = 90 marks[0][1] = 95 marks[1][0] = 89 marks[1][1] = 94 marks[2][0] = 78 marks[2][1] = 87 marks[3][0] = 76 marks[3][1] = 68 marks[4][0] = 98 marks[4][1] = 91
以上就是C# 中的双精度数组?的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号