Enum的values()方法的文档在哪里?

时间:2012-12-01 11:57:07

标签: java enums

我将枚举声明为:

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

3 个答案:

答案 0 :(得分:169)

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

记录在三个地方:

  

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

  • Enum.valueOf
    values方法说明中提到了特殊隐式valueOf方法)
  

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

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

答案 1 :(得分:29)

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

来自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);

答案 2 :(得分: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()

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

注意:

  1. 从不使用性别作为班级名称,难以阅读您的代码,我们在Java中使用Sex

  2. 当面对像这样的Java拼图时,我建议使用字节码反编译工具(我使用Andrey Loskutov的字节码概述Eclispe插件)。这将显示课程内的所有内容