⑴****基本数据类型(八种):
整型: byte 1字节, short 2字节, int 4字节, long 8字节
浮点型: float 4字节, double 8字节
【float 类型共 32位(不 int相同),其中 1位为符号位, 指数 8 位, 尾数23 位。】【double 类型能表示64位,其中1 位符号位,11位指数,52位尾数】
【浮点数的字面量默认是double】
字符型: char 2字节【unicode编码值】
boolean型: boolean 1字节 【值只有true和false】
隐式类型转换:
正方向: charà
byteàshortà intàlongàfloatàdouble
负方向:
** ****⑵****引用类型(自定义类型):**对象:比如String
数组:int[]
接口:interface
版权归原作者 江添* 所有, 如有侵权,请联系我们删除。