在Java中,常量是可以用于switch语句的。switch语句可以用来根据不同的常量值执行不同的代码块。常量可以是整数、字符、字符串或枚举类型。在switch语句中,case子句中的值必须是常量,不允许使用变量或表达式。例如:
final int num = 2; switch (num) { case 1: System.out.println("One"); break; case 2: System.out.println("Two"); break; default: System.out.println("Other"); }
在上面的例子中,num是一个常量,可以在switch语句中使用。当num的值为2时,会输出"Two"。