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

ตัวสร้างเริ่มต้นใน C # คืออะไร?


ตัวสร้างคลาสเป็นฟังก์ชันสมาชิกพิเศษของคลาสที่ดำเนินการทุกครั้งที่เราสร้างวัตถุใหม่ของคลาสนั้น ตัวสร้างเริ่มต้นไม่มีพารามิเตอร์ใด ๆ

ต่อไปนี้คือตัวอย่างที่แสดงวิธีการทำงานกับคอนสตรัคเตอร์เริ่มต้นใน C# -

ตัวอย่าง

using System;

namespace LineApplication {
   class Line {
      private double length; // Length of a line

      public Line(double len) { //Parameterized constructor
      Console.WriteLine("Object is being created, length = {0}", len);
         length = len;
      }

      public void setLength( double len ) {
         length = len;
      }

      public double getLength() {
         return length;
      }

      static void Main(string[] args) {
         Line line = new Line(10.0);
         Console.WriteLine("Length of line : {0}", line.getLength());

         // set line length
         line.setLength(6.0);
         Console.WriteLine("Length of line : {0}", line.getLength());
         Console.ReadKey();
      }
   }
}

ผลลัพธ์

Object is being created, length = 10
Length of line : 10
Length of line : 6