作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
做这样的事情有多可行?考虑 Enum*
一个 enum Enum* {/* ... */}
...
public static void main(String[] args) {
?[] types = new ?[] { Enum1, Enum2, Enum3 };
for(? type : types) {
for(Enum elem : type.values() { /* ... */ }
}
}
我的主要要求基本上是一堆字符串常量,每个常量都以不同的类型分组。我是否可以更好地设置二维字符串数组(String[][]
)?我想要一些更受约束的值,而不是 types[j],其中 j==1
是 A
,而 j==2
是B
。
我知道我可以尝试一下反射,但我敢说它会变得太复杂,而且可读性较差。
最佳答案
也许这个结构可以解决您的问题:
enum SomeEnum {
A("one", "two", "three"),
B("hello", "there");
public final String[] constants;
SomeEnum(String... constants) {
this.constants = constants;
}
}
关于Java 枚举数组(类),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23457966/
我是一名优秀的程序员,十分优秀!