gpt4 book ai didi

java - enum.values() - 是返回枚举确定性的顺序

转载 作者:IT老高 更新时间:2023-10-28 11:29:30 26 4
gpt4 key购买 nike

我有一个枚举SOME_ENUM:

public enum SOME_ENUM {
EN_ONE,
EN_TWO,
EN_THREE;
}

SOME_ENUM.values() 是否总是按照枚举声明的顺序返回枚举:EN_ONE、EN_TWO、EN_THREE?是规则还是不保证在下一个 JDK 版本中不会更改?

最佳答案

Java 语言规范使用这种显式语言:

@return an array containing the constants of this enum type, in the order they're declared [Source]

所以,是的,它们将按申报顺序退回。值得注意的是,如果有人更改类,则顺序可能会随着时间而改变,因此请务必小心使用它。

关于java - enum.values() - 是返回枚举确定性的顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3820149/

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