由于Java是强类型语言,所以有时要进行运算的时候,需要用到类型转换
低 -----------------------------------------------------> 高
byte,short,char -> int -> long -> float -> double
运算中,不同类型的数据先转化为同一类型,然后进行运算
强制类型转换:(类型)变量名,高-->低需强制转换
public class file {
? public static void main(String[] args) {
? ? ? int i = 128;
? ? ? byte b = (byte)i;//内存溢出
?
? ? ? System.out.println(i);
? ? ? System.out.println(b);
? ? ? ?
? ? ? ? ? ? ? /*
? ? ? * 不能对布尔值进行转换
? ? ? * 不能把对象类型转换为不相干的类型
? ? ? * 在把高容量转换到低容量的时候,强制转换
? ? ? * 转换的时候可能存在内存溢出,或精度问题
? ? ? * */
? ? ? System.out.println((int)23.7);
? ? ? System.out.println((int)-45.89f);
? }
}
自动类型转换:低-->高自动转换
public class file {
? public static void main(String[] args) {
?
? ? ? char c = 'a';
? ? ? int d = c + 1;
? ? ? System.out.println(d);
? ? ? System.out.println((char)d);
? ? ? ?
? ? ? ?
? ? ? //操作较大的数时,注意溢出问题
? ? ? //JDK7新特性,数字可以用_分隔
? ? ? int money = 10_0000_0000;
? ? ? int year = 20;
? ? ? int total = money * year; //-1474836480,计算时内存溢出了
? ? ? long totalNew = money * (long)year;
? ? ? System.out.println(total);
? ? ? System.out.println(totalNew);
? }
}
?
|