Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

เราจะใช้อาร์เรย์หลายมิติใน C # ได้อย่างไร


C # อนุญาตให้อาร์เรย์หลายมิติ อาร์เรย์หลายมิติเรียกอีกอย่างว่าอาร์เรย์สี่เหลี่ยม ประกาศอาร์เรย์ 2 มิติของสตริงเป็น

string [,] names;

อาร์เรย์ 2 มิติถือได้ว่าเป็นตารางซึ่งมีจำนวนแถว x และจำนวนคอลัมน์ y

อาร์เรย์หลายมิติสามารถเริ่มต้นได้โดยการระบุค่าในวงเล็บสำหรับแต่ละแถว อาร์เรย์ต่อไปนี้มี 4 แถว และแต่ละแถวมี 4 คอลัมน์

int [,] a = new int [4,4] {
   {0, 1, 2, 3} , /* initializers for row indexed by 0 */
   {4, 5, 6, 7} , /* initializers for row indexed by 1 */
   {8, 9, 10, 11} /* initializers for row indexed by 2 */
   {12, 13, 14, 15} /* initializers for row indexed by 3 */
};

ให้คุณดูตัวอย่างเพื่อเรียนรู้วิธีทำงานกับอาร์เรย์หลายมิติใน C#

ตัวอย่าง

using System;
namespace Program {
   class Demo {
      static void Main(string[] args) {
         /* an array with 5 rows and 2 columns*/
         int[,] a = new int[5, 2] {{0,0}, {1,2}, {2,4}, {3,6}, {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