解释 Enum 声明中使用的泛型

发布于 2024-07-15 06:53:32 字数 125 浏览 5 评论 0原文

有人可以解释一下这是什么意思吗?

Enum<T extends Enum<T>>

这看起来像是一个循环定义,至少可以说我发现它非常令人困惑。

Can someone please explain what this means?

Enum<T extends Enum<T>>

This seems like a circular definition, and I find it highly confusing to say the least.

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

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

发布评论

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

评论(1

或十年 2024-07-22 06:53:32

Java 泛型常见问题解答中有一个很好的解释

从最后一位开始:

总而言之,声明 Enum; extends Enum> 可以被解密
as: Enum 是一个泛型类型,可以
只能为其子类型实例化,
这些子类型将继承一些
有用的方法,其中一些方法需要
子类型特定参数(或
否则取决于子类型)。

(不过我确实表示同情 - 递归泛型声明很痛苦。我的协议缓冲区移植到 C# 的情况更糟:它需要两个声明,每个声明都引用自己彼此......我还没有找到了一种简化它们的方法。)

There's a good explanation in the Java Generics FAQ.

From the end bit:

To sum it up, the declaration Enum<E> extends Enum<E>> can be decyphered
as: Enum is a generic type that can
only be instantiated for its subtypes,
and those subtypes will inherit some
useful methods, some of which take
subtype specific arguments (or
otherwise depend on the subtype).

(I do sympathise though - recursively generic declarations are a pain. My protocol buffers port to C# is even worse though: it requires two declarations which each refer to themselves and each other... I haven't found a way of simplifying them.)

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