相同类型的 case 语句可以这样写吗?case today.equals('一'||'三'||'五'):break;
The operator || is undefined for the argument type(s) char, char
运算符| |是未定义的参数类型(S)字符,字符
case后只能是整型或字符型,不能跟其他的
不可以
可以这样写
case '一' :
case '三' :
case '五' :
System.out.println("吃包子");