Java数据类型转换

优先级

先进行数据类型转换,再进行运算:
byte、short、char->ini->long->float->double

类型转换

//高转到低,强制类型转换
//强制转换,(类型)变量名字
int i = 128;
byte b = (byte)i;

//低转到高,自动类型转换
int i = 128;
double = i;
/*注意点
1.不能对布尔类型进行数据转换
2.不能把对象类型转换成不相干的类型
3.在把高容量专函到低容量的时候,强制转换
4.数据转换的时候可能会内存溢出或者精度问题!
*/
System.out.println((int)23.7);//23
System.out.println((int)-45.89f);//-45

常见问题

大数溢出问题

JDK7新特性,数字之间可以用下划线分割

int money = 10_0000_0000;
int years = 20;
int total = money * years;//-1474836480,计算的时候溢出了
long total2 = money * years;//默认是int,转换之前已经存在问题了 

long total3 = money *((long)years)
posted @ 2022-08-16 15:17  Pappen  阅读(24)  评论(0编辑  收藏  举报