C# 函数覆盖总结学习(推荐)
更新时间:2016年05月26日 16:17:51 投稿:jingxian
下面小编就为大家带来一篇C# 函数覆盖总结学习(推荐)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
覆盖类成员:通过new关键字修饰虚函数表示覆盖该虚函数。
一个虚函数被覆盖后,任何父类变量都不能访问该虚函数的具体实现。
public virtual void IntroduceMyself(){...}//父类虚函数
public new void IntroduceMyself(){...}//子类覆盖父类虚函数
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MethodOverrideByNew { public enum Genders { Female=0, Male=1 } public class Person { protected string _name; protected int _age; protected Genders _gender; /// <summary> /// 父类构造函数 /// </summary> public Person() { this._name = "DefaultName"; this._age = 23; this._gender = Genders.Male; } /// <summary> /// 定义虚函数IntroduceMyself() /// </summary> public virtual void IntroduceMyself() { System.Console.WriteLine("Person.IntroduceMyself()"); } /// <summary> /// 定义虚函数PrintName() /// </summary> public virtual void PrintName() { System.Console.WriteLine("Person.PrintName()"); } } public class ChinesePerson :Person{ /// <summary> /// 子类构造函数,指明从父类无参构造函数调用起 /// </summary> public ChinesePerson() :base(){ this._name = "DefaultChineseName"; } /// <summary> /// 覆盖父类方法IntroduceMyself,使用new关键字修饰虚函数 /// </summary> public new void IntroduceMyself() { System.Console.WriteLine("ChinesePerson.IntroduceMyself()"); } /// <summary> /// 重载父类方法PrintName,使用override关键字修饰虚函数 /// </summary> public override void PrintName(){ System.Console.WriteLine("ChinesePerson.PrintName()"); } } class Program { static void Main(string[] args) { //定义两个对象,一个父类对象,一个子类对象 Person aPerson = new ChinesePerson(); ChinesePerson cnPerson = new ChinesePerson(); //调用覆盖的方法,父类对象不能调用子类覆盖过的方法,只能调用自身的虚函数方法 aPerson.IntroduceMyself(); cnPerson.IntroduceMyself(); //调用重载方法,父类对象和子类对象都可以调用子类重载过后的方法 aPerson.PrintName(); cnPerson.PrintName(); System.Console.ReadLine(); } } }
结果:
Person.IntroduceMyself()
ChinesePerson.IntroduceMyself()
ChinesePerson.PrintName()
ChinesePerson.PrintName()
以上这篇C# 函数覆盖总结学习(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Windows系统中C#读写ini配置文件的程序代码示例分享
这篇文章主要介绍了C#读写ini配置文件的程序代码示例分享,在Windows下可以利用Win32的API函数轻松实现,需要的朋友可以参考下2016-04-04浅谈Visual C#进行图像处理(读取、保存以及对像素的访问)
本文主要介绍利用C#对图像进行读取、保存以及对像素的访问等操作,介绍的比较简单,希望对初学者有所帮助。2016-04-04
最新评论