Java 有界通配符类型

发布于 2024-08-11 18:08:54 字数 206 浏览 4 评论 0原文

我需要定义一个泛型类,并且类型参数必须是枚举。我认为它应该看起来像

public class <T> MyClass<T extends Enum<T>> {

}

但我似乎无法弄清楚确切的语法。我应该提到,我需要一种方法来引用它实例化的类型(在 MyClass 内)。

谢谢!

I need to define a generic class, and the type parameter must be an enum. I think it should look something like

public class <T> MyClass<T extends Enum<T>> {

}

But I can't seem to figure out the exact syntax. I should mention that I need a way to refer to the type (within MyClass) that it is instantiated with.

Thanks!

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

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

发布评论

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

评论(2

浅唱々樱花落 2024-08-18 18:08:54
public class MyClass<T extends Enum<T>> { }
public class MyClass<T extends Enum<T>> { }
没有伤那来痛 2024-08-18 18:08:54

虽然批准的答案在语法上看起来是正确的,但这样的声明的场景是什么?您是否正在尝试编写一些可以对 任何 enum 定义的类型进行操作的类,例如 java.util.EnumSetjava.util.EnumMap?这是一种不寻常的安排,因此请确保您确实需要它以满足您的要求。

While the approved answer looks syntactically correct, what's the scenario for such a declaration? Are you trying to write some class that can operate on any enum-defined type, like java.util.EnumSet or java.util.EnumMap? It's an unusual arrangement, so be sure you really need it in order to meet your requirements.

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