Java数据类型
包装类
基本数据类型和包装类的转换
-
自动装箱
int t1 = 2; Integer t2 = t1;
-
手动装箱
Integer t3 = new Integer(t1);
-
自动拆箱
int t4 = t2;
-
手动拆箱
int t5 = t2.intValue();
基本数据类型和字符串的转换
-
Integer.toString() 基本数据类型转字符串
int t1 = 2; String t2 = Integer.toString(t1);
-
Integer.parseInt() 字符串转基本数据类型
String t2 = "2"; int t3 = Integer.parseInt(t2);
-
Integer.valueOf() 先将String对象转换成integer对象,Integer对象自动转换成int
String t2 = "2"; int t4 = Integer.valueOf(t2);
基本数字类型的初始值
数据类型 | 默认值 |
---|---|
byte | 0 |
short | 0 |
int | 0 |
long | 0L |
double | 0.0d |
char | ‘\u0000’ |
boolean | false |
几个知识点
- 当-128<数字<127 Integer t= 100;虚拟机会从缓存区取对象,若没有对象则会产生一个对象。
Integer t1 = 100;
Integer t2 = 100;
System.out.println(t1==t2);
/*true*/
- 8种基本数据类型对应的包装类,除了float和double其他都可以应用对象常量池概念。
来源:CSDN
作者:夏小天XXT
链接:https://blog.csdn.net/Pantree00/article/details/104224940