gpt4 book ai didi

java - 在扩展 Enum 的泛型类中使用 Enum.values

转载 作者:太空狗 更新时间:2023-10-29 23:04:00 25 4
gpt4 key购买 nike

<分区>

我正在尝试使用枚举中的所有可用值初始化一个通用类。这是我希望它的工作方式:

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

E[] choices;

public MyClass() {
choices = E.values();
}

但是,在 Eclipse 中不接受对 E.values 的调用,表示此 E 未定义此方法。

可以接受使用此构造函数,但需要调用者提供值:

public MyClass(E[] e) {
choices = e;
}

在我找到的文档中:

Java programming language enum types are much more powerful than their counterparts in other languages. The enum declaration defines a class (called an enum type). The enum class body can include methods and other fields. The compiler automatically adds some special methods when it creates an enum. For example, they have a static values method that returns an array containing all of the values of the enum in the order they are declared.

有没有办法解决这个问题?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com