每个Java枚举都有一个静态值()方法可以像这样使用
for (MyEnum enum : MyEnum.values()) {
// Do something with enum
}
但是,我无法弄清楚这个方法的定义。在Javadoc中没有提到它,它也没有出现在源文件中的任何地方。
答案 0 :(得分:9)
这是Java Language Specification所要求的:values
将为所有枚举隐式声明valueOf
:
/**
* Returns an array containing the constants of this enum
* type, in the order they're declared. This method may be
* used to iterate over the constants as follows:
*
* for(E c : E.values())
* System.out.println(c);
*
* @return an array containing the constants of this enum
* type, in the order they're declared
*/
public static E[] values();
/**
* Returns the enum constant of this type with the specified
* name.
* The string must match exactly an identifier used to declare
* an enum constant in this type. (Extraneous whitespace
* characters are not permitted.)
*
* @return the enum constant with the specified name
* @throws IllegalArgumentException if this enum type has no
* constant with the specified name
*/
public static E valueOf(String name);
这些方法是在编译期间添加的,因此如果您使用javap
来反汇编代码,您实际上可以查看它们的正文。
答案 1 :(得分:3)
答案 2 :(得分:2)
没有明确定义,就像没有定义java数组的length
属性一样。它隐含可用于具体的Enum类型。