184

我将枚举声明为:

enum Sex {MALE,FEMALE};

然后,迭代枚举,如下所示:

for(Sex v : Sex.values()){
    System.out.println(" values :"+ v);
}

我检查了 Java API 但找不到 values() 方法?我很好奇这个方法是从哪里来的?

API 链接: https ://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html

4

3 回答 3

192

您在 javadoc 中看不到此方法,因为它是由编译器添加的。

记录在三个地方:

编译器在创建枚举时会自动添加一些特殊方法。例如,它们有一个静态值方法,该方法返回一个数组,该数组按照声明的顺序包含枚举的所有值。此方法通常与 for-each 构造结合使用,以迭代枚举类型的值。

  • Enum.valueOf类(方法描述中提到了
    特殊的隐式方法)valuesvalueOf

枚举类型的所有常量都可以通过调用该类型的隐式 public static T[] values() 方法获得。

values函数只是列出枚举的所有值。

于 2012-12-01T11:58:49.383 回答
36

该方法是隐式定义的(即由编译器生成)。

JLS

此外,如果Eenum类型的名称,则该类型具有以下隐式声明的static方法:

/**
* 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);
于 2012-12-01T12:00:59.863 回答
12

运行这个

    for (Method m : sex.class.getDeclaredMethods()) {
        System.out.println(m);
    }

你会看见

public static test.Sex test.Sex.valueOf(java.lang.String)
public static test.Sex[] test.Sex.values()

这些都是“sex”类拥有的公共方法。它们不在源代码中,javac.exe 添加了它们

笔记:

  1. 永远不要使用 sex 作为类名,很难阅读您的代码,我们在 Java 中使用 Sex

  2. 当遇到像这样的 Java 难题时,我建议使用字节码反编译器工具(我使用 Andrey Loskutov 的字节码大纲 Eclispe 插件)。这将显示类中的所有内容

于 2012-12-01T17:28:34.183 回答