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);
}
} `这里写代码片`
java.lang.Enum.valueOf()方法实例
最新推荐文章于 2024-09-03 09:36:00 发布