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

จะสร้างอินสแตนซ์ของคลาสใน C # ได้อย่างไร


ใช้ตัวดำเนินการใหม่เพื่อสร้างอินสแตนซ์ของคลาสใน C#

สมมุติว่าคลาสของเราคือไลน์ การสร้างอินสแตนซ์จะสร้างวัตถุใหม่ดังที่แสดงด้านล่าง -

Line line = new Line();

เมื่อใช้อ็อบเจกต์ คุณสามารถเรียกใช้เมธอด −

line.setLength(6.0);

เรามาดูตัวอย่างกัน −

ตัวอย่าง

using System;

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

      public Line() {
         Console.WriteLine("Object is being created");
      }
      public void setLength( double len ) {
         length = len;
      }
      public double getLength() {
         return length;
      }

      static void Main(string[] args) {
         Line line = new Line();

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

ผลลัพธ์

Object is being created
Length of line : 6