如何在 C# 中禁用外部继承(没有类)?

发布于 2024-09-16 14:24:55 字数 464 浏览 5 评论 0原文

如何在不使用类的情况下禁用外部继承?我知道可以用这样的类来完成:

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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文