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

Base และ Derived Classes ใน C # คืออะไร?


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

ตัวอย่างเช่น คลาส Vehicle Base ที่มี Derived Classes ดังต่อไปนี้

Truck
Bus
Motobike

คลาสที่ได้รับสืบทอดตัวแปรสมาชิกคลาสฐานและวิธีการของสมาชิก

ในทำนองเดียวกัน คลาสที่ได้รับสำหรับคลาส Shape สามารถเป็น Rectangle ได้ดังตัวอย่างต่อไปนี้

ตัวอย่าง

using System;
namespace Program {
   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 Demo {
      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();
      }
   }
}

ผลลัพธ์

Total area: 35