Java的基础数据类型

基本类型概念

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

posted @ 2021-07-25 22:30  马冉冉  阅读(41)  评论(0)    收藏  举报