gpt4 book ai didi

inheritance - C#从自身内部的嵌套类继承

转载 作者:行者123 更新时间:2023-12-04 06:59:09 28 4
gpt4 key购买 nike

类是否可以从嵌套类继承,或者在 C# 中实现嵌套接口(interface)?

class Outer : Outer.Inner {
class Inner { ... }
...
}

最佳答案

以你写的方式,没有(见 this )。但是如果你的内部接口(interface)在另一个类中,那么你可以。

public class SomeClass : SomeOtherClass.ISomeInterface {
public void DoSomething() {}
}

public class SomeOtherClass {
public interface ISomeInterface {
void DoSomething();
}
}

关于inheritance - C#从自身内部的嵌套类继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2158975/

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