数据值与地址值
欢迎光临我的博客[http://poetize.cn],前端使用Vue2,聊天室使用Vue3,后台使用Spring Boot
基本数据类型与包装类
基本数据类型 | 包装类型 |
---|---|
byte | Byte |
boolean | Boolean |
short | Short |
char | Character |
int | Integer |
long | Long |
float | Float |
double | Double |
包装类应用场景
集合类泛型只能是包装类
List<Integer> list2 = new ArrayList<>();
成员变量不能有默认值(基本数据类型的成员变量都有默认值)
方法参数允许定义空值(int不能传 null)