基本数据类型与包装类
基本数据类型 | 包装类型 |
---|---|
byte | Byte |
boolean | Boolean |
short | Short |
char | Character |
int | Integer |
long | Long |
float | Float |
double | Double |
包装类应用场景
集合类泛型只能是包装类
List<Integer> list2 = new ArrayList<>();
成员变量不能有默认值(基本数据类型的成员变量都有默认值)
方法参数允许定义空值(int不能传 null)