关于泛型和继承的问题

发布于 2024-10-31 06:24:07 字数 411 浏览 0 评论 0原文

我有一个派生自 BaseDerived 类。以下哪些断言是正确的还是错误的?

typeof(Derived<SomeType>).IsSubclassOf(typeof(Base<SomeType>))
typeof(Derived<>)        .IsSubclassOf(typeof(Base<SomeType>))
typeof(Derived<SomeType>).IsSubclassOf(typeof(Base<>))
typeof(Derived<>)        .IsSubclassOf(typeof(Base<>))

提前致谢

I have a class Derived<T> that is derived from Base<T>. Which of the following assertions are true or false?

typeof(Derived<SomeType>).IsSubclassOf(typeof(Base<SomeType>))
typeof(Derived<>)        .IsSubclassOf(typeof(Base<SomeType>))
typeof(Derived<SomeType>).IsSubclassOf(typeof(Base<>))
typeof(Derived<>)        .IsSubclassOf(typeof(Base<>))

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

踏雪无痕 2024-11-07 06:24:07

在这种情况下,第一个:

typeof(Derived<SomeType>).IsSubclassOf(typeof(Base<SomeType>))

另一个不能编译 - 你不能在没有类型参数的情况下引用泛型,例如

Something<>

In that case, the first one:

typeof(Derived<SomeType>).IsSubclassOf(typeof(Base<SomeType>))

The other's don't compile- you cannot refer to a generic without it's type argument, e.g.

Something<>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文