gpt4 book ai didi

c# - 为什么在C#中调用Grand parent虚函数

转载 作者:太空宇宙 更新时间:2023-11-03 20:04:33 24 4
gpt4 key购买 nike

我有以下代码。谁能回答为什么在这种情况下调用 base-show 方法而不调用 derive-show。在这种情况下,将如何为派生类和基类的显示函数分配内存。

class OverrideAndNew : Derive
{

public static void Main()
{
Derive obj = new Derive1();
obj.Show();

Console.ReadLine();
}
}

class Base
{
public virtual void Show()
{
Console.WriteLine("Base - Show");
}
}

class Derive : Base
{
protected virtual void Show()
{
Console.WriteLine("Derive - Show");
}
}

class Derive1 : Derive
{
protected override void Show()
{
Console.WriteLine("Derive1 - Show");
}
}

最佳答案

因为你调用了它。覆盖方法时不能修改访问修饰符。所以基本上,Derive1 覆盖了 Derive 的 Show 方法。但 derive 从未超越 Base。所以只有一种公共(public) Show 方法,即在 Base 中实现的方法。

你可能想做的是:

class OverrideAndNew
{
public static void Main()
{
Derive obj = new Derive1();
obj.Show();

Console.ReadLine();
}
}

class Base
{
public virtual void Show()
{
Console.WriteLine("Base - Show");
}
}

class Derive : Base
{
public override void Show()
{
Console.WriteLine("Derive - Show");
}
}

class Derive1 : Derive
{
public override void Show()
{
Console.WriteLine("Derive1 - Show");
}
}

请注意,方法签名保持不变。它总是公开的,因为 Base 说它必须公开。它始终具有相同的名称、返回类型和参数(在本例中没有)。

关于c# - 为什么在C#中调用Grand parent虚函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24594002/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com