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

การประกาศอาร์เรย์ใน C #


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

ไวยากรณ์

การประกาศอาร์เรย์ใน C# -

type[] arrayName;

ที่นี่

  • พิมพ์ − เป็นประเภทข้อมูลของอาร์เรย์ในภาษา C#
  • arrayName − ชื่อของอาร์เรย์
  • [ ] − ระบุขนาดของอาร์เรย์

ตัวอย่าง

ให้เราดูตัวอย่างเพื่อทำความเข้าใจวิธีการประกาศอาร์เรย์ใน C# -

using System;
namespace MyApplication {
   class MyClass {
      static void Main(string[] args) {
         // n is an array of 5 integers
         int [] a = new int[5];
         int i,j;
         /* initialize elements of array a */
         for ( i = 0; i < 5; i++ ) {
            a[ i ] = i + 10;
         }
         /* output each array element's value */
         for (j = 0; j < 5; j++ ) {
            Console.WriteLine("Element[{0}] = {1}", j, a[j]);
         }
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

Element[0] = 10
Element[1] = 11
Element[2] = 12
Element[3] = 13
Element[4] = 14