如何从Java中的索引获取枚举值?
我在Java中有一个枚举:
public enum Months{
JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC
}
我想按索引访问枚举值,例如
Months(1) = JAN;Months(2) = FEB;
...
我该怎么办?
回答:
试试这个
Months.values()[index]
以上是 如何从Java中的索引获取枚举值? 的全部内容, 来源链接: utcz.com/qa/430210.html