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();
      }
   }
}

编译并执行上述代码时,将生成以下输出-

链接:https://www.learnfk.comhttps://www.learnfk.com/csharp/csharp-jagged-arrays.html

来源:LearnFk无涯教程网

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核心技术面试精讲 -〔杨晓峰〕

Spring Boot与Kubernetes云原生微服务实践 -〔杨波〕

全栈工程师修炼指南 -〔熊燚(四火)〕

系统性能调优必知必会 -〔陶辉〕

职场求生攻略 -〔臧萌〕

手把手带你写一个Web框架 -〔叶剑峰〕

大型Android系统重构实战 -〔黄俊彬〕

LangChain 实战课 -〔黄佳〕

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