26

在 Java SE 7(很可能是以前的版本)中,Enum 类声明如下:

 public abstract class Enum<E extends Enum<E>>
 extends Object
 implements Comparable<E>, Serializable

Enum 类有一个带有这个签名的静态方法:

  T static<T extends Enum<T>> valueOf(Class<T> enumType, String name) 

但是没有静态方法:valueOf(String)在 Enum 类中定义,也没有在 Enum 所属的层次结构中向上定义。

问题是valueOf(String)从哪里来?它是语言的一个特性,即编译器内置的特性吗?

4

2 回答 2

23

此方法由编译器隐式定义。

从文档中:

请注意,对于特定的枚举类型 T,可以使用该枚举上隐式声明的 public static T valueOf(String) 方法而不是此方法来从名称映射到相应的枚举常量。枚举类型的所有常量都可以通过调用该类型的隐式 public static T[] values() 方法获得。

来自Java 语言规范,第 8.9.2 节

此外,如果 E 是枚举类型的名称,则该类型具有以下隐式声明的静态方法:

/**
* 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-08-11T12:44:39.310 回答
0

我想这一定是语言的一个特点。一方面,通过制作一个来创建一个枚举,它不需要扩展枚举:

public enum myEnum { red, blue, green }

仅此一项,就是语言功能,否则您需要这样做:

public class  MyEnum extends Enum { ..... }

其次,方法 ,Enum.valueOf(Class<T> enumType, String name)必须在您使用时由编译器生成myEnum.valueOf(String name)

这似乎是可能的,因为 newEnum既是一个语言特性,也是一个可以扩展的类。

于 2012-08-11T13:20:33.067 回答