作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个枚举类,比如 Enum1 和 Enum2:
enum Enum1 {ONE, TWO, THREE}
enum Enum2 {FOUR, FIVE}
我有这样的方法:
public <E extends Enum<E>> method (E arg) {
switch (arg) { // Here is the compile error -- Cannot switch
// on a value of type E. Only convertible int
// values, strings or enum variables are permitted
// (And of course, all the cases are incorrect
// because the enum set is unknown)
case ONE:
// do something
case TWO:
// do something
case THREE:
// do something
case FOUR:
// do something
case FIVE:
// do something
default:
// do something
}
}
有一种方法可以将其更改为字符串(仅适用于 JDK7):
public <E extends Enum<E>> method (E arg) {
switch (arg.name()) {
case "ONE":
// do something
case "TWO":
// do something
case "THREE":
// do something
case "FOUR":
// do something
case "FIVE":
// do something
default:
// do something
}
}
最佳答案
你不能做你想做的事。一方面,enum
开关实际上是枚举的 ordinal()
开关的简写。因此,即使您可以让开关识别您的“联合枚举”类型,该语句也有重复的 case
分支。 (例如,ONE
和 FOUR
的序号都是 0。)
一种方法可能是将操作移至枚举本身。然后,您可以让每个 enum
类型实现一个通用接口(interface):
interface Actor {
void doSomething();
}
enum Enum1 implements Actor {
ONE {
public void doSomething() { . . . }
},
TWO {
public void doSomething() { . . . }
},
THREE {
public void doSomething() { . . . }
}
}
enum Enum2 implements Actor {
FOUR {
public void doSomething() { . . . }
},
FIVE {
public void doSomething() { . . . }
}
}
然后您可以实现您的方法来简单地将处理委托(delegate)给参与者:
public void method(Actor actor) {
if (actor == null) {
// default action
} else {
actor.doSomething();
}
}
关于java - Java 中不同枚举类联合的 switch 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13958754/
我是一名优秀的程序员,十分优秀!