C# 沿继承链重写多个派生类的基类方法

发布于 2024-10-04 05:41:09 字数 557 浏览 2 评论 0原文

我有一个继承链,由三个类 A、B 和 C 组成,其中 A 和 B 是抽象的,C 是 B 的具体实现。

我在基本抽象类 A 上有一个虚拟方法, Foo( ),我想在具体的类 C 中重写。

如果我尝试仅在类 C 中重写,它永远不会被拾取,并且始终使用默认的基类实现,但如果我在 B 和 B 中都重写; C,它只使用虚拟方法的 B.Foo() 实现。

除了“覆盖”之外,我是否还必须在 B.Foo() 上声明一些额外的内容?

显然,这些是我的类的简化版本,但这是我的方法声明:

abstract class A {
  protected virtual string Foo() {
    return "A";
  }
}

abstract class B : A {
  protected override string Foo() {
    return "B";
  }
}

class C : B {
  protected override string Foo() {
    return "C";
  }
}

I have an inheritance chain that consists of three classes A,B, and C, where A and B are abstract, and C is a concrete implementation of B.

I have a virtual method on the base abstract class A, Foo() that I would like to override in the concrete class C.

If I try and override just in Class C it is never picked up and always uses the default base class implementation, but if I override in both B & C, it only ever uses the B.Foo() implementation of the virtual method.

Do I have to declare something extra on B.Foo() other than 'override'?

Obviously these are simplified versions of my classes, but here are my method declarations:

abstract class A {
  protected virtual string Foo() {
    return "A";
  }
}

abstract class B : A {
  protected override string Foo() {
    return "B";
  }
}

class C : B {
  protected override string Foo() {
    return "C";
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不咬妳我踢妳 2024-10-11 05:41:09

啊?

void Main()
{
    new C().DumpFoo(); // C
    A x=new C();
    x.BaseDumpFoo(); //C
}

abstract class A {
  protected virtual string Foo() {
    return "A";
  }
  public void BaseDumpFoo()
  {
    Console.WriteLine(Foo());
  }
}

abstract class B : A {
  protected override string Foo() {
    return "B";
  }
}

class C : B {
  protected override string Foo() {
    return "C";
  }
  public void DumpFoo()
  {
    Console.WriteLine(Foo());
  }
}

输出是C。从 B 中删除 Foo 实现,输出仍然是 C

Huh?

void Main()
{
    new C().DumpFoo(); // C
    A x=new C();
    x.BaseDumpFoo(); //C
}

abstract class A {
  protected virtual string Foo() {
    return "A";
  }
  public void BaseDumpFoo()
  {
    Console.WriteLine(Foo());
  }
}

abstract class B : A {
  protected override string Foo() {
    return "B";
  }
}

class C : B {
  protected override string Foo() {
    return "C";
  }
  public void DumpFoo()
  {
    Console.WriteLine(Foo());
  }
}

Output is C. Remove Foo implementation from B and the output is still C

酒儿 2024-10-11 05:41:09

问题是,由于 B 正在重写该方法,因此当从 C 调用它时,它永远不会到达继承层次结构中的实现
你需要做的是将 B 中的方法定义为 new (以便它覆盖 A 的实现)并将其也定义为 virtual (以便 C 可以使用它自己的实现
你会有这样的东西

abstract class A
{
    protected virtual string Foo()
    {
        return "A";
    }
}

abstract class B : A
{
    protected new virtual string Foo()
    {
        return "B";
    }
}

class C : B
{
    protected override string Foo()
    {
        return "C";
    }

The problem's that since B is overriding the method, when calling it from C, it never reaches to its implementation in the inheritance hierarchy
what you need to do is define the method in B as new (so that it overrides the implementation from A) and define it also as virtual (so that C can use it's own implementation
you would have something like this

abstract class A
{
    protected virtual string Foo()
    {
        return "A";
    }
}

abstract class B : A
{
    protected new virtual string Foo()
    {
        return "B";
    }
}

class C : B
{
    protected override string Foo()
    {
        return "C";
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文