gpt4 book ai didi

c# - 在接口(interface)中声明继承接口(interface)的所有方法?

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

是否需要在派生接口(interface)中重新声明继承接口(interface)中声明的所有方法?

示例:

public interface IBoo
{
void DoSomething();
}

public interface IFoo : IBoo
{
string SayHello();
}

或者我必须这样做:-

public interface IFoo : IBoo
{
void DoSomething();

string SayHello();
}

最佳答案

Do you need to redeclare all methods declared in the inherited interface in your interface?

没有。其实这就是继承的概念。基接口(interface)中声明的所有方法都将继承到派生接口(interface)。

关于c# - 在接口(interface)中声明继承接口(interface)的所有方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29253148/

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