隐式转换
byte -> short->int->long->float->double
两种提升规则
1、取值范围小的和取值范围大的进行运算,小的会先提升为大的,再进行运算
2、byte short char三种类型的数据在运算时候。都会先提升成大的再进行运算,不论是否类型不同
public Class Teat{
public static void (String[] args){
byte a = 10;
byte b = 20;
//令c = a + b,则c的数据类型应为int
}
}
标签:short,运算,算术,运算符,int,0202,byte From: https://www.cnblogs.com/cxllxc/p/17276303.html