参考答案
装箱和拆箱的执行过程:
- 装箱是通过调用包装器类的 valueOf 方法实现的;
- 拆箱是通过调用包装器类的 xxxValue 方法实现的,xxx代表对应的基本数据类型;
- int装箱时自动调用Integer的valueOf(int)方法;
- Integer拆箱时自动调用Integer的intValue方法。
装箱和拆箱的常见问题:
- 整型的包装类 valueOf 方法,返回对象时,在常用的取值范围内,会返回缓存对象;
- 浮点型的包装类 valueOf 方法,返回新的对象;
- 布尔型的包装类 valueOf 方法,Boolean类的静态常量 TRUE | FALSE。
实例:
Integer i1 = 100; Integer i2 = 100; Integer i3 = 200; Integer i4 = 200; System.out.println(i1 == i2);//true System.out.println(i3 == i4);//false Double d1 = 100.0; Double d2 = 100.0; Double d3 = 200.0; Double d4 = 200.0; System.out.println(d1 == d2);//false System.out.println(d3 == d4);//false Boolean b1 = false; Boolean b2 = false; Boolean b3 = true; Boolean b4 = true; System.out.println(b1 == b2);//true System.out.println(b3 == b4);//true
- 包含算术运算会触发自动拆箱。
- 存在大量自动装箱的过程,如果装箱返回的包装对象不是从缓存中获取,会创建很多新的对象,比较消耗内存。
Integer s1 = 0; long t1 = System.currentTimeMillis(); for(int i = 0; i <1000 * 10000; i++){ s1 += i; } long t2 = System.currentTimeMillis(); System.out.println("使用Integer,递增相加耗时:" + (t2 - t1));//使用Integer,递增相加耗时:68 int s2 = 0; long t3 = System.currentTimeMillis(); for(int i = 0; i <1000 * 10000; i++){ s2 += i; } long t4 = System.currentTimeMillis(); System.out.println("使用int,递增相加耗时:" + (t4 - t3));//使用int,递增相加耗时:6
以上,是Java面试题【装箱和拆箱的执行过程是怎样的,以及常见问题】的参考答案。
输出,是最好的学习方法。
欢迎在评论区留下你的问题、笔记或知识点补充~
—end—