枚举类: 只能取特定之中的一个

/*
*枚举类: 只能取特定之中的一个
*/


public class TestEnum{
public enum cl  {red,green,yellow};//定义的一个枚举类,利用类在定义新的变量,变量只能取其中的类型
  public static void main(String[] args)
  {
  cl m = cl.red;
 
  switch(m)
  {
    case red:
       System.out.println("red");//防止case穿透 必须加break语句
         break;
    case green:
       System.out.println("green");
       break;
    case yellow:
       System.out.println("yellow");
       break;
    default: 
        break;
  }
  System.out.println(m);
  }
}

你可能感兴趣的:(java)