public class Parent {
public static enum DWeek{
MON,
TUS,
SUN
}
public static final int MON = 100;
public static final int TUS = 101;
public static final int SUN = 102;
/**
* @param args
*/
public static void main(String[] args) {
DWeek week;
//使用枚举数据类型
week = DWeek.MON;
System.out.println(week); //MON
}
}
枚举2
最新推荐文章于 2024-03-16 15:34:42 发布