本帖最后由 罗安迪 于 2014-4-2 13:32 编辑
byte char short是在同一层次 一定要向上转为int先再转为其他的类型~
基本数据类型转换可以相互转换:向上转换(隐式类型转换):byte,short,char → int → long → float → doublebyte,short,char之间不会相互转换,他们在计算时会首先转换为int类型。boolean 类型是不可以转换为其他基本数据类型。 向下转换(显式类型转换):byte,short,char → int → long → float → doublebyte,short,char之间不会相互转换,他们在计算时首先会转换为int类型。boolean 类型是不可以转换为其他基本数据类型。
|