1 package com.mon11.day4; 2 /** 3 * 类说明 :定义枚举 4 * @author 作者 : chenyanlong 5 * @version 创建时间:2017年11月4日 6 */ 7 public class Test { 8 9 //定义枚举 10 public enum Unit{ 11 u1,u2,u3 12 } 13 14 //枚举方法 15 public void show(Unit unit){ 16 switch(unit){ 17 case u1: 18 System.out.println("第一章打基础"); 19 break; 20 case u2: 21 System.out.println("第二章打基础"); 22 break; 23 case u3: 24 System.out.println("第三章打基础"); 25 break; 26 default: 27 System.out.println("输入有误"); 28 } 29 } 30 31 //主方法 32 public static void main(String[] args) { 33 Test test=new Test(); 34 test.show(Unit.u1); 35 //test.show(Unit.u2); 36 //test.show(Unit.u3); 37 } 38 }
运行结果:
时间: 2024-10-12 02:40:10