1.byte 1个字节 Byte
2.boolean Boolean 默认false
3.char 2个字节 Charactor
4.int 4个字节 Integer
5.short 2个字节 Short
6.long 8个字节 Long
7.float 4个字节 Float
8.double 8个字节 Double
9.void
基本类型数据存储在栈中,封装类的实例化在堆中分配存储空间,对对象的引用存储在栈中。
Integer默认值为null, int默认为0
1.byte 1个字节 Byte
2.boolean Boolean 默认false
3.char 2个字节 Charactor
4.int 4个字节 Integer
5.short 2个字节 Short
6.long 8个字节 Long
7.float 4个字节 Float
8.double 8个字节 Double
9.void
基本类型数据存储在栈中,封装类的实例化在堆中分配存储空间,对对象的引用存储在栈中。
Integer默认值为null, int默认为0