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

จะกำหนดอาร์เรย์มิติเดียวใน C Sharp ได้อย่างไร?


อาร์เรย์ใช้เพื่อจัดเก็บชุดข้อมูล แต่มักจะมีประโยชน์มากกว่าที่จะคิดว่าอาร์เรย์เป็นชุดของตัวแปรประเภทเดียวกันที่จัดเก็บไว้ในตำแหน่งหน่วยความจำที่อยู่ติดกัน

เพื่อกำหนดอาร์เรย์มิติเดียว -

int[] runs = new int[10];

ให้เราเริ่มต้นอาร์เรย์ในบรรทัดเดียวกัน -

int[] runs = new int[5] {125, 173, 190, 264, 188};

ต่อไปนี้คือตัวอย่างการแสดงวิธีการประกาศ เริ่มต้น และแสดงอาร์เรย์ −

ตัวอย่าง

using System;

namespace Program {
   class Demo {
      static void Main(string[] args) {
         int[] runs = new int[5] {125, 173, 190, 264, 188};
         int i,j;
         for (j = 0; j < 5; j++ ) {
            Console.WriteLine("Innings score of Cricketer[{0}] = {1}", j, runs[j]);
         }
         Console.ReadKey();
      }
   }
}


ผลลัพธ์

Innings score of Cricketer[0] = 125
Innings score of Cricketer[1] = 173
Innings score of Cricketer[2] = 190
Innings score of Cricketer[3] = 264
Innings score of Cricketer[4] = 188