重写、隐藏基类(new, override)的方法

时间:2021-05-19

复制代码 代码如下:
public class Father
{
public void Write() {
Console.WriteLine("父");
}
}

public class Mother
{
public virtual void Write()
{
Console.WriteLine("母");
}
}

public class Boy : Father
{
public new void Write()
{
Console.WriteLine("子");
}
}

public class Girl : Mother
{
public override void Write()
{
Console.WriteLine("女");
}
}

复制代码 代码如下:
static void Main(string[] args)
{
Father father = new Boy();
father.Write();

Boy boy = new Boy();
boy.Write();


Mother mother = new Mother();
mother.Write();

Girl girl = new Girl();
girl.Write();

Console.ReadLine();
}

输出:




添加调用父方法:
复制代码 代码如下:
public class Boy : Father
{
public new void Write()
{
base.Write();
Console.WriteLine("子");
}
}

public class Girl : Mother
{
public override void Write()
{
base.Write();
Console.WriteLine("女");
}
}

输出:






可见,在程序运行结果上new 和override是一样的。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章