今天來認識繼承性
參考資料:
小山的 C# 教學-第28課-繼承性
繼承性
可以繼承其他物件屬性和方法。其目的在於減少重複程式碼撰寫,方便程式維護。
範例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| public class Demo { private int hp; public string getHp() { return hp; } } public class Demo2: Demo { private int hurt; }
public class Test { Demo2 A = new Demo2(); A.int = 10; Console.WriteLine(A.int); }
|