几个常用的包装类
- 存在
java.lang
的包中基本数据类型 对应的包装类 byte Byte short Short int Integer long Long float Float double Double char Character boolean Boolean
常量池的概念
- 除了
Float
和Double
两种包装类,其他的基本数据类型对应的包装类均可以利用数据常量池的概念。
基本数据类型 | 对应的包装类 |
---|---|
byte | Byte |
short | Short |
int | Integer |
long | Long |
char | Character |
boolean | Boolean |