如何使用屬性來找出鋸齒陣列的長度?


首先,宣告並初始化一個鋸齒形陣列。

int[][] arr = new int[][] {
new int[] {
   0,
   0
}, new int[] {
   1,
   2
},
new int[] {
   2,
   4
}, new int[] {
   3,
   6
}, new int[] {
   4,
   8
}
};

現在使用 length 屬性獲取長度。

arr.Length

以下為完整的程式碼 −

示例

 線上演示

using System;
public class Program {
   public static void Main() {
      int[][] arr = new int[][]{new int[]{0,0},new int[]{1,2}, new int[]{2,4},new int[]{ 3, 6 }, new       int[]{ 4, 8 } };
      // Length
      Console.WriteLine("Length:"+arr.Length);
      Console.WriteLine("Upper Bound: {0}",arr.GetUpperBound(0).ToString());
      Console.WriteLine("Lower Bound: {0}",arr.GetLowerBound(0).ToString());
      Console.WriteLine("Dimensions of Array : " + arr.Rank);
   }
}

輸出

Length:5
Upper Bound: 4
Lower Bound: 0
Dimensions of Array : 1

更新於:22-06-2020

1K+ 瀏覽

開啟你的 職業

透過完成課程,獲得認證

開始
廣告
© . All rights reserved.