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

คลาสพื้นฐานใน C # คืออะไร?


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

คลาสสามารถได้รับมาจากคลาสหรืออินเตอร์เฟสมากกว่าหนึ่งคลาส ซึ่งหมายความว่าคลาสสามารถสืบทอดข้อมูลและฟังก์ชันจากคลาสหรืออินเตอร์เฟสพื้นฐานได้หลายคลาส

ต่อไปนี้เป็นไวยากรณ์ของคลาสพื้นฐานใน C# -

<access-specifier> class <base_class> {
   ...
}

class <derived_class> : <base_class> {
   ...
}

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

ตัวอย่าง

using System;

namespace InheritanceApplication {
   class Shape {
      public void setWidth(int w) {
      width = w;
   }

   public void setHeight(int h) {
      height = h;
   }

   protected int width;
      protected int height;
   }

   // Derived class
   class Rectangle: Shape {
      public int getArea() {
         return (width * height);
      }
   }

   class RectangleTester {
      static void Main(string[] args) {
         Rectangle Rect = new Rectangle();

         Rect.setWidth(5);
         Rect.setHeight(7);

         // Print the area of the object.
         Console.WriteLine("Total area: {0}", Rect.getArea());
         Console.ReadKey();
      }
   }
}