函数覆盖总结知识点

时间:2022-06-25 00:21:05 总结范文 我要投稿
  • 相关推荐

函数覆盖总结知识点

  一个虚函数被覆盖后,任何父类变量都不能访问该虚函数的具体实现。

函数覆盖总结知识点

  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; ///

  /// 父类构造函数 ///

  public Person() { this._name = "DefaultName"; this._age = 23; this._gender = Genders.Male; } ///

  /// 定义虚函数IntroduceMyself() ///

  public virtual void IntroduceMyself() { System.Console.WriteLine("Person.IntroduceMyself()"); } ///

  /// 定义虚函数PrintName() ///

  public virtual void PrintName() { System.Console.WriteLine("Person.PrintName()"); } } public class ChinesePerson :Person{ ///

  /// 子类构造函数,指明从父类无参构造函数调用起 ///

  public ChinesePerson() :base(){ this._name = "DefaultChineseName"; } ///

  /// 覆盖父类方法IntroduceMyself,使用new关键字修饰虚函数 ///

  public new void IntroduceMyself() { System.Console.WriteLine("ChinesePerson.IntroduceMyself()"); } ///

  /// 重载父类方法PrintName,使用override关键字修饰虚函数 ///

  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# 函数覆盖总结学习(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

【函数覆盖总结知识点】相关文章:

初中函数知识点总结07-29

关于函数与方程的知识点总结10-17

二次函数知识点总结07-03

函数中自变量的知识点总结08-02

二次函数知识点总结12-19

初中数学所有函数的知识点总结11-22

高二数学函数公式知识点总结06-28

高中函数基本性质知识点总结07-25

高一数学函数知识点总结12-01

高中数学函数知识点最新总结07-02