package com.mon11.day4;
/**
* 类说明 :定义枚举
* @author 作者 : chenyanlong
* @version 创建时间:2017年11月4日
*/
public class Test {
//定义枚举
public enum Unit{
u1,u2,u3
}
//枚举方法
public void show(Unit unit){
switch(unit){
case u1:
System.out.println("第一章打基础");
break;
case u2:
System.out.println("第二章打基础");
break;
case u3:
System.out.println("第三章打基础");
break;
default:
System.out.println("输入有误");
}
}
//主方法
public static void main(String[] args) {
Test test=new Test();
test.show(Unit.u1);
//test.show(Unit.u2);
//test.show(Unit.u3);
}
}