Java数据类型自动转换的优先顺序

如题所述

楼主你好: 转换原则:从低精度向高精度转换byte 、short、int、long、float、double、char

注:两个char型运算时,自动转换为int型;当char与别的类型运算时,也会先自动转换为int型的,再做其它类型的自动转换

基本类型有以下四种:int 长度数据类型有:byte(8bits)、short(16bits)、int(32bits)、long(64bits)、
float 长度数据类型有:单精度(32bits float)、双精度(64bits double)
boolean 类型变量的取值有:ture、false 。1字节(8位)
char数据类型有:unicode字符,16位
对应的类类型:Integer、Float、Boolean、Character、Double、Short、Byte、Long
温馨提示:答案为网友推荐,仅供参考
第1个回答  2021-01-19
由低到高:
byte,short,char—> int —> long—> float —> double
1. 不能对boolean类型进行类型转换。
2. 不能把对象类型转换成不相关类的对象。
3. 在把容量大的类型转换为容量小的类型时必须使用强制类型转换。
4. 转换过程中可能导致溢出或损失精度
5. 浮点数到整数的转换是通过舍弃小数得到,而不是四舍五入
第2个回答  2013-02-05
String>double>float>long>int>(short,byte,char)
第3个回答  2013-02-05
byte - (short , char) - int - long - float -double
第4个回答  2019-05-26
byte--short--int--long--float--double
由小到大精度
相似回答