编程语言
首页 > 编程语言> > c# – 当基类已经扩展相同的接口时是否扩展接口

c# – 当基类已经扩展相同的接口时是否扩展接口

作者:互联网

在C#中,如下面的代码片段所示,在声明类A时扩展接口IFoo是正确/正确的,知道类BaseClass扩展了接口IFoo吗?是否有必要在此处指定接口IFoo,这是最佳做法吗?

class A : BaseClass, IFoo
{
}

可能是一个愚蠢的问题,但在这种情况下适当的做法是什么?

解决方法:

如果BaseClass是从IFoo继承的,则完全没必要在A类中使用IFoo.

检查下图(Resharper用于此建议)

enter image description here

特别感谢@InBetween

如果是接口重新实现,则在子类上重新定义接口具有用例.

interface IFace
{
    void Method1();
}
class Class1 : IFace
{
    void IFace.Method1()
    {
        Console.WriteLine("I am calling you from Class1");
    }
}
class Class2 : Class1, IFace
{
    public void Method1()
    {
        Console.WriteLine("i am calling you from Class2");
    }
}

int main void ()
{
    IFace ins = new Class2();
    ins.Method1();
}

这个方法返回我从Class2调用你

然而,

interface IFace
{
    void Method1();
}
class Class1 : IFace
{
    void IFace.Method1()
    {
        Console.WriteLine("I am calling you from Class1");
    }
}
class Class2 : Class1
{
    public void Method1()
    {
        Console.WriteLine("i am calling you from Class2");
    }
}

int main void ()
{
    IFace ins = new Class2();
    ins.Method1();
}

我从Class1打电话给你

标签:c,inheritance,interface,base-class,interface-implementation
来源: https://codeday.me/bug/20190611/1215586.html