分層繼承中從基底類別繼承了多個類別。
在範例中,我們的基底類別是Father -
class Father { public void display() { Console.WriteLine("Display..."); } }
它有Son 和Daughter 作為衍生類。讓我們如何在繼承中新增衍生類別 -
class Son : Father { public void displayOne() { Console.WriteLine("Display One"); } }
以下是在 C# 中實作層次繼承的完整範例 -
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Inheritance { class Test { static void Main(string[] args) { Father f = new Father(); f.display(); Son s = new Son(); s.display(); s.displayOne(); Daughter d = new Daughter(); d.displayTwo(); Console.ReadKey(); } class Father { public void display() { Console.WriteLine("Display..."); } } class Son : Father { public void displayOne() { Console.WriteLine("Display One"); } } class Daughter : Father { public void displayTwo() { Console.WriteLine("Display Two"); } } } }
以上是層次繼承的 C# 範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!