C# 中的 Jagged函数

首页 / C#入门教程 / C# 中的 Jagged函数

Jagged数组是数组的数组,您可以将一个名为scores的数组声明为int类型-

int [][] scores;

声明一个数组,不会在内存中创建该数组。创建上面的数组-

int[][] scores=new int[5][];
for (int i=0; i < scores.Length; i++) {
   scores[i]=new int[4];
}

可以将交错数组初始化为-

int[][] scores=new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}};

其中,score是两个整数组的数组-score[0]是3个整数的数组,score[1]是4个整数的数组。

using System;

namespace ArrayApplication {
   class MyArray {
      static void Main(string[] args) {
         
         /* a jagged array of 5 array of integers*/
         int[][] a=new int[][]{new int[]{0,0},new int[]{1,2},
            new int[]{2,4},new int[]{ 3, 6 }, new int[]{ 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

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

MySQL实战45讲 -〔林晓斌〕

MongoDB高手课 -〔唐建法(TJ)〕

Selenium自动化测试实战 -〔郭宏志〕

大厂晋升指南 -〔李运华〕

说透区块链 -〔自游〕

React Native 新架构实战课 -〔蒋宏伟〕

结构执行力 -〔李忠秋〕

结构会议力 -〔李忠秋〕

LangChain 实战课 -〔黄佳〕

好记忆不如烂笔头。留下您的足迹吧 :)