看例子:
public static void byteTest(){
char a =2;
byte b=2;
short c =3;
switch (c) {
case 1:
break;
default:
break;
}
}
结果:
程序不报错,运行正常,这说明
byte,short,char都可以隐含转换为int
看例子:
public static void byteTest(){
char a =2;
byte b=2;
short c =3;
switch (c) {
case 1:
break;
default:
break;
}
}
结果:
程序不报错,运行正常,这说明
byte,short,char都可以隐含转换为int