繼承和抽象類別中提到過,子類與父類的方法間有這些關係:
子類直接使用父類方法(但是必須父類方法是public或protected類型);
子類的方法覆蓋父類方法(override);
子類的方法重載父類方法(overload);
看下面這種情況:
public class YSchool { private int id = 0; private string name = string.Empty; public int ID { get { return this.id; } } public string Name { get { return name; } } public YSchool() { this.id = 0; this.name = @"清華大學附中"; } public YSchool(int id, string name) { this.id = id; this.name = name; } /// <summary> /// 構造器 /// </summary> public YSchool(int id) { this.id = id; this.name = @"陝師大附中"; } } public class YTeacher { private int id = 0; private string name = string.Empty; private YSchool school = null; private string introDuction = string.Empty; private string imagePath = string.Empty; public int ID { get { return id; } } public string Name { get { return name; } } public YSchool School { get { if (school == null) { school = new YSchool(); } return school; } set { school = value; } } public string IntroDuction { get { return introDuction; } set { introDuction = value; } } public string ImagePath { get { return imagePath; } set { imagePath = value; } } /// <summary> /// 構造器 /// </summary> public YTeacher(int id, string name) { this.id = id; this.name = name; } /// <summary> /// 構造器 /// </summary> public YTeacher(int id, string name, YSchool school) { this.id = id; this.name = name; this.school = school; } /// <summary> /// 給學生講課的方法 /// </summary> public void ToTeachStudents() { Console.WriteLine(string.Format(@"{0} 老師教育同學們: Good Good Study,Day Day Up!", this.Name)); } /// <summary> /// 懲罰犯錯誤學生的方法 /// 加virtual關鍵字,表示該方法可以被覆蓋重寫 /// </summary> /// <param name="punishmentContent"></param> public virtual void PunishmentStudents(string punishmentContent) { Console.WriteLine(string.Format(@"{0} 的{1} 老師讓犯錯誤的學生 {2}。", this.School.Name, this.name, punishmentContent)); } } public class UniversityTeacher : YTeacher { public UniversityTeacher(int id, string name,YSchool school) : base(id, name, school) { } /// <summary> /// 隱藏父類的同名方法,隱藏後該類只能訪問隱藏後的方法,不能訪問到父類的該方法了。 /// </summary> public new void ToTeachStudents() { Console.WriteLine(string.Format(@"{0} 老師教育同學們:認真學習.net!", this.Name)); } /// <summary> /// 覆蓋 /// </summary> public override void PunishmentStudents(string punishmentContent) { base.PunishmentStudents(punishmentContent);//也可以不執行父類方法。 //自己的代碼 } }
using System;namespace YYS.CSharpStudy.MainConsole{ class Program { static void Main(string[] args) { UniversityTeacher uTeacher = new UniversityTeacher(3, @"董邊成", new YSchool(3, @"清華大學")); //訪問的是子類方法 uTeacher.ToTeachStudents(); //可以訪問覆蓋後的方法 uTeacher.PunishmentStudents(@"讓你掛科。"); YTeacher teacher = new UniversityTeacher(3, @"董邊成", new YSchool(3, @"清華大學")); //訪問不到隱藏的那個方法了 teacher.ToTeachStudents(); //可以訪問覆蓋後的方法 teacher.PunishmentStudents(@"跑10000米。"); Console.ReadKey(); } }}
結果:
子類繼承父類的方法,使用new修飾一個同父類方法同名,參數列表相同的新方法的過程就叫做隱藏。也就是子類隱藏了父類的這個方法。不過隱藏與覆蓋不同,隱藏的方法只能通過該方法所在的類訪問,如果使用父類的變數,依然訪問的是被隱藏的方法。
從上面的代碼中可以看到,覆蓋和隱藏的區別。父類變數引用子類執行個體後,只能訪問被隱藏的方法,而無法訪問隱藏後的方法。但是都可以訪問到覆蓋後的方法。
還有一點就是如果想讓這個方法被子類覆蓋,那麼父類該方法必須加上virtual。隱藏父類的方法new關鍵字也可以不加。隱藏一般使用的比較少,在一些特殊的情況下解決一些問題。
以上就是C#基礎知識整理:基礎知識(7) 方法的隱藏的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!