如何在 C# 中禁用外部继承(没有类)?
如何在不使用类的情况下禁用外部继承?我知道可以用这样的类来完成:
public abstract class NoInherit
{
internal NoInherit() { }
}
public sealed class MyType : NoInherit { /* ... */ }
但不能用接口来完成。我不想使用类,因为我想从另一个类继承 MyType
而 C# 不支持多重继承。
也许我应该更好地解释我想要做什么。我正在尝试创建一个类似对象的类,但它只接受某些类型。
List<NoInherit> x = new List<NoInherit>();
x.Add(new MyType()); // OK
x.Add(new MyType2()); // OK
x.Add(123); // ERROR
How can I disable external inheritance without using classes? I know it can be done with classes like this:
public abstract class NoInherit
{
internal NoInherit() { }
}
public sealed class MyType : NoInherit { /* ... */ }
But not with interfaces. I don't want to use classes because I want to inherit MyType
from another class and C# doesn't support multiple inheritance.
Perhaps I should explain better what I'm trying to do. I'm attempting to create an object-like class but that only accepts some types.
List<NoInherit> x = new List<NoInherit>();
x.Add(new MyType()); // OK
x.Add(new MyType2()); // OK
x.Add(123); // ERROR
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论