Java中基本数据类型有哪些?他们对应的封装类都是那些?

2024-11-16 00:29:28
推荐回答(3个)
回答1:

8个基本类型:int,short,long,byte,char,double,float,boolean

对应的封装类:Integer,Short,Long,Byte,Charactor,Double,Float,Boolean

回答2:

数据类型 默认值 封装类(都在java.lang包下)
byte (byte)0 Byte
short (short)0 Short
int 0 Integer
long 0L Long
float 0.0f Float
double 0.0d Double
char \u0000 Character
boolean false Boolean

回答3: