C# 交錯(cuò)數(shù)組

C# 交錯(cuò)數(shù)組

C# 數(shù)組 C# 數(shù)組

交錯(cuò)數(shù)組是數(shù)組的數(shù)組。

交錯(cuò)數(shù)組是一維數(shù)組。

您可以聲明一個(gè)帶有 int 值的交錯(cuò)數(shù)組 scores,如下所示:

int [][] scores;

聲明一個(gè)數(shù)組不會(huì)在內(nèi)存中創(chuàng)建數(shù)組。創(chuàng)建上面的數(shù)組:

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

您可以初始化一個(gè)交錯(cuò)數(shù)組,如下所示:

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

其中,scores 是一個(gè)由兩個(gè)整型數(shù)組組成的數(shù)組 -- scores[0] 是一個(gè)帶有 3 個(gè)整數(shù)的數(shù)組,scores[1] 是一個(gè)帶有 4 個(gè)整數(shù)的數(shù)組。

實(shí)例

下面的實(shí)例演示了如何使用交錯(cuò)數(shù)組:

實(shí)例

using System;

namespace ArrayApplication
{
    class MyArray
    {
        static void Main(string[] args)
        {
            /* 一個(gè)由 5 個(gè)整型數(shù)組組成的交錯(cuò)數(shù)組 */
            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;

            /* 輸出數(shù)組中每個(gè)元素的值 */
            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();
        }
    }
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

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

C# 數(shù)組 C# 數(shù)組

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频