最佳答案
我想定义一个不是序数的枚举,例如:
enum class States(value: Int) {
STATE_A(4),
STATE_B(5),
STATE_C(7),
STATE_D(12)
}
如何得到每个项目的值? 例如,国家应该返回 7。