基本类型概念
java的基本数据类型可以简称为“四类八种”:
整型:(byte、short、int、long):整数数据类型默认是int
浮点型:(float、double)
字符型:(char)
布尔类型:(boolean):true 真 和 false 假
byte -> short -> char -> int -> long -> float ->double(小到大)
数据类型转换:
自动类型转换(自动),较小的类型转换为一个更大的类型
byte -> short -> char -> int -> long -> float ->double
原文:https://www.cnblogs.com/maranran1234/p/15059290.html