demo1 在枚举类中定义成员属性与方法
enum Color { // 枚举类
RED("红色"),GREEN("绿色"),BLUE("蓝色"); // 枚举对象要写在首行
private String title;// 成员属性
private Color(String title){// 构造方法初始化属性;
this.title = title;
}
@Override
public String toString(){// 对象的输出都调用toString方法
return this.title;
}
}
public class JavaDemo {
public static void main(String args[]) {
for(Color c : Color.values()){
System.out.println(c.ordinal() + "-" + c.name() + "~~" + c);
}
}
}
- 结果
0-RED~~红色
1-GREEN~~绿色
2-BLUE~~蓝色
标签:String,title,Color,private,枚举,10.11,public,定义
From: https://www.cnblogs.com/pansidong/p/17519431.html