Java基本数据类型

Java定义了8个简单的数据类型:
    整型:  字节型(byte)8its,短整型(short)16,整型(int)32,长整型(long)64
    浮点型:单精度(float)32,双精度型(double)64
    逻辑性:布尔型(boolean)
    字符型:字符型(char)16
基本类型之间的转换
首先将7种类型按下面顺序排列一下:
byte <(short=char)< int < long < float < double

 原始类型:boolean,char,byte,short,int,long,float,double
 封装类型: Boolean,Character ,Byte,Short,Integer,Long,Float,Double


你可能感兴趣的:(Java基本数据类型)