枚举是多例设计
要求构造方法私有化
枚举中定义的构造方法不能用public
枚举对象必须放在首行,随后才可以定义属性,构造方法,普通方法
package cn; enum Color{ //定义好了枚举类 RED("红色") ,GREEN ("绿色"),BLUE("蓝色") ; //枚举对象dingyi8在最上面 private String title ; //属性 private Color(String title){ // 私有 this.title = title ; } public String toString (){ return this.title ; } } public class Test { public static void main(String[] args) { for(Color c : Color.values()){ System.out.println(c.ordinal() + " " + c) ; } } }
枚举实现接口
interface Message { public String getTitle() ; } enum Color implements Message{ //定义好了枚举类 RED("红色") ,GREEN ("绿色"),BLUE("蓝色") ; //枚举对象dingyi8在最上面 private String title ; //属性 private Color(String title){ // 私有 this.title = title ; } public String getTitle(){ return this.title ; } } public class Test { public static void main(String[] args) { Message msg = Color.RED ; System.out.println(msg.getTitle()); } }
在每一个对象后面使用匿名内部类的形势实现方法
不写了。。
实际作用:
1.switch中
enum Color{ RED , GREEN , BLUE ; } public class Test { public static void main(String[] args) { Color c = Color.RED ; switch(c){ case RED: System.out.println("This is RED") ; break ; case GREEN: System.out.println("This is Green"); break; case BLUE: System.out.println("This is BLUE"); break; } } }
试图使用emnu
枚举属于多例的设计模式,想用就用,不想用就不用。
时间: 2024-09-30 18:33:15