//**************强制类型转换***********
class Test {
public static void main(String[] args){
double a= 12.3;
int b = (int)a; // 这里将a的类型(double)转换为int型。出现精度损失!
}
}
//将double类型转换为int型
//整型常量,默认为int型。
//浮点型常量,默认为double型。
3.自动类型提升
byte < short < int < long < float < double