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

ขอบเขตของตัวแปรสมาชิกสาธารณะของคลาสใน C # คืออะไร?


ตัวระบุการเข้าถึงแบบสาธารณะอนุญาตให้คลาสเปิดเผยตัวแปรสมาชิกและฟังก์ชันของสมาชิกไปยังฟังก์ชันและอ็อบเจ็กต์อื่นๆ สมาชิกสาธารณะทุกคนสามารถเข้าถึงได้จากนอกชั้นเรียน

ในตัวอย่างด้านล่าง ตัวแปรความยาวและความกว้างได้รับการประกาศสาธารณะ ตอนนี้คุณสามารถเข้าถึงได้แม้นอกเมธอด Main()

ตัวแปรสามารถเข้าถึงได้โดยใช้อินสแตนซ์ของคลาส

Rectangle r = new Rectangle();
r.length = 4.5;
r.width = 3.5;

ให้เราดูรหัสที่สมบูรณ์

ตัวอย่าง

Using System;
namespace RectangleApplication {
   class Rectangle {
      // member variables
      public double length;
      public double width;
      public double GetArea() {
         return length * width;
      }
      public void Display() {
         Console.WriteLine("Length: {0}", length);
         Console.WriteLine("Width: {0}", width);
         Console.WriteLine("Area: {0}", GetArea());
      }
   } // end class Rectangle
   class ExecuteRectangle {
      static void Main(string[] args) {
         Rectangle r = new Rectangle();
         r.length = 4.5;
         r.width = 3.5;
         r.Display();
         Console.ReadLine();
      }
   }
}