内存:
- byte short int long float double
- char int long float double
public class Demo {
public static void main(String[] args){
//范围小的数据类型,和范围大的数据类型进行运算,小的先提升为大的,再进行运算
/*
int a = 20;
double b = 2.3;
double c = a +b;
System.out.println(c);
*/
//范围小的给大的赋值,可以直接赋值
/*
int a = 123456789;
long b = a;
System.out.println(b);
*/
//byte short char 在参与运算,无论是否有更高级的,也需要提升为int类型,再参与运算
/*
byte b = 10;
byte a = 20;
int c = a + b;
*/
}
}