如何在Java中使用switch语句对枚举进行条件判断

avatar
作者
筋斗云
阅读量:0

在Java中,可以使用switch语句对枚举进行条件判断。以下是一个示例代码:

public class EnumExample {      public enum Color {         RED, GREEN, BLUE     }      public static void main(String[] args) {         Color color = Color.RED;          switch(color) {             case RED:                 System.out.println("The color is red");                 break;             case GREEN:                 System.out.println("The color is green");                 break;             case BLUE:                 System.out.println("The color is blue");                 break;             default:                 System.out.println("Unknown color");                 break;         }     } } 

在上面的代码中,定义了一个枚举Color,然后在main方法中使用switch语句对枚举进行条件判断。根据枚举color的取值,输出对应的颜色信息。如果枚举的取值不在定义的范围内,会执行default语句块中的代码。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!