标签:system ror model and java类型 money 使用 java nbsp
int i = 128;
byte b = i;//报错
byte b = (byte)i;//-128 强制转换,内存溢出
低---------------------------------------------------------->高
byte,short,char-> int -> long -> float -> double
基本类型之间比较时低精度自动转化成高精度
byte 1个字节
short 2个字节
byte,char,short都不会存在隐式转换,相互之间只能进行强制类型转换
他们三者在计算时首先转换为int类型
int 4个字节
float 4个字节
long 8个字节
double 8个字节
强制转换:高-->低
自动转换:低-->高
不能对布尔值进行转换
不能把对象类型转换为不相干类型
在把高容量转换为低容量时,强制转换
转换时可能存在内存溢出或精度问题
//精度问题
System.out.print((int)23.7);//23
System.out.print((int)-45.78f);//-45
char c = ‘a‘;//a
int d = c+1;//98
System.out.print((char)d);//b
//JDK7新特性,数字之间可以用_分割
int money = 10_0000_0000;//1000000000
int year = 20;
int total = money*year;//-1474836480,计算的时候溢出了
long total2 = money*year;//也是个负数,默认是int,转换之前已经存在问题了
//先把一个数转换为long
long total3 = money*((long)years);//20000000000
?
//L 和 l,一般由于L更好区分,所以尽量使用L
标签:system ror model and java类型 money 使用 java nbsp
原文地址:https://www.cnblogs.com/studygod/p/12485696.html