Array.Rank Właściwość

Definicja

Pobiera rangę (liczbę wymiarów) klasy Array. Na przykład jednowymiarowa tablica zwraca wartość 1, tablica dwuwymiarowa zwraca wartość 2 itd.

public:
 property int Rank { int get(); };
public int Rank { get; }
member this.Rank : int
Public ReadOnly Property Rank As Integer

Wartość właściwości

Int32

Ranga (liczba wymiarów) klasy Array.

Przykłady

Poniższy przykład inicjuje jednowymiarową tablicę, tablicę dwuwymiarową i poszarpaną tablicę oraz pobiera Rank właściwość każdej z nich.

using System;

public class Example
{
   public static void Main()
   {
      int[] array1 = new int[10];
      int[,] array2= new int[10,3];
      int[][] array3 = new int[10][];

      Console.WriteLine("{0}: {1} dimension(s)",
                        array1.ToString(), array1.Rank);
      Console.WriteLine("{0}: {1} dimension(s)",
                        array2.ToString(), array2.Rank);
      Console.WriteLine("{0}: {1} dimension(s)",
                        array3.ToString(), array3.Rank);
   }
}
// The example displays the following output:
//       System.Int32[]: 1 dimension(s)
//       System.Int32[,]: 2 dimension(s)
//       System.Int32[][]: 1 dimension(s)
let array1 = Array.zeroCreate<int> 10
let array2 = Array2D.zeroCreate<int> 10 3
let array3 = Array.zeroCreate<int[]> 10

printfn $"{array1}: {array1.Rank} dimension(s)"

printfn $"{array2}: {array2.Rank} dimension(s)"

printfn $"{array3}: {array3.Rank} dimension(s)"

// The example displays the following output:
//       System.Int32[]: 1 dimension(s)
//       System.Int32[,]: 2 dimension(s)
//       System.Int32[][]: 1 dimension(s)
Module Example
   Public Sub Main()
      Dim array1(9) As Integer
      Dim array2(9,2) As Integer
      Dim array3(9)() As Integer

      Console.WriteLine("{0}: {1} dimension(s)",
                        array1.ToString(), array1.Rank)
      Console.WriteLine("{0}: {1} dimension(s)",
                        array2.ToString(), array2.Rank)
      Console.WriteLine("{0}: {1} dimension(s)",
                        array3.ToString(), array3.Rank)
   End Sub
End Module
' The example displays the following output:
'       System.Int32[]: 1 dimension(s)
'       System.Int32[,]: 2 dimension(s)
'       System.Int32[][]: 1 dimension(s)

Uwagi

Na przykład poniższy kod tworzy tablicę trzech wymiarów z właściwością Rank , której wartość to 3.

Dim TDArray(0,0,0) As Integer
int[,,] TDArray = new int[1,1,1];

Tablica poszarpana (tablica tablic) jest tablicą jednowymiarową; wartość jej Rank właściwości to 1.

Pobieranie wartości tej właściwości jest operacją O(1).

Dotyczy

Zobacz też