Java Enum valueOf()方法

java.lang.Enum.valueOf() 方法返回指定名称enumtype的枚举常量。该名称必须用于声明在此类型的枚举常量的标识符完全匹配。

1 语法

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

2 参数

enumType:这是枚举类型,返回一个常量的类的对象。

name :这是常量,要返回的名称。

3 返回值

此方法返回具有指定名称的枚举类型的枚举常量。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Enum valueOf()方法
 */
import java.lang.*;

// enum showing Mobile prices
enum Mobile {
   Samsung(400), Nokia(250),Motorola(325);
  
   int price;
   Mobile(int p) {
      price = p;
   }
   int showPrice() {
      return price;
   } 
}

public class EnumDemo {
   
   public static void main(String args[]) {
   
     System.out.println("CellPhone List:");
     for(Mobile m : Mobile.values()) { 
        System.out.println(m + " costs " + m.showPrice() + " dollars");
     }

     Mobile ret;
     ret = Mobile.valueOf("Samsung"); 
     System.out.println("Selected : " + ret);                              
   }
}

输出结果为:

CellPhone List:
Samsung costs 400 dollars
Nokia costs 250 dollars
Motorola costs 325 dollars
Selected : Samsung

 

热门文章

优秀文章