gpt4 book ai didi

generics - Java : How to define a collection of Enums that implements an interface

转载 作者:行者123 更新时间:2023-12-03 07:07:31 25 4
gpt4 key购买 nike

我想创建一个具有两个简单方法的类 - 第一个方法注册需要处理的类型。第二个将处理所有已注册的类型。我遇到的问题是我想要注册/处理的类有一定的限制 - 它们必须是实现和接口(interface)的枚举

我不太清楚如何定义将用于存储注册类型的集合。我的代码的简化版本是:

public class Example {
interface MyType {
// Add methods here
}

private List<what-goes-here?> store = new ArrayList<>();


public <T extends Enum<?> & MyType> void registerType(@Nonnull Class<T> type) {
store.add(type);
}


public void processAll() {
for (T t : store) { // Where do I define T?
// process t
}
}
}

最佳答案

这个怎么样?

public class Example {

interface MyType {
// Add methods here
}

// v--- save it as enum class
private List<Class<? extends Enum<?>>> store = new ArrayList<>();


public <T extends Enum<?> & MyType> void registerType(@Nonnull Class<T> type) {
store.add(type);
}


public void processAll() {
// v--- iterate each enum type
for (Class<? extends Enum<?>> type : store) {
Enum<?>[] constants = type.getEnumConstants();
for (Enum<?> constant : constants) {
//v--- downcasting to the special interface
MyType current = (MyType) constant;
// TODO
}
}
}

}

关于generics - Java : How to define a collection of Enums that implements an interface,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45235505/

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