JavaSE8基础 Integer 包装类对象的值不变
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaSE8基础 Integer 包装类对象的值不变相关的知识,希望对你有一定的参考价值。
礼悟:
好好学习多思考,尊师重道存感恩。叶见寻根三二一,江河湖海同一体。
虚怀若谷良心主,愿行无悔给最苦。读书锻炼强身心,诚劝且行且珍惜。
javaSE:1.8
os:windows7 x64
ide:MyEclipse 2017
代码
package jizuiku.demo; /** * Integer 包装类的对象不能改变其中的值 * * @author 给最苦 * @version V17.11.06 */ public class Demo { public static void main(String[] args) { // 对象引用 i 变没变? // 有几个Integer对象? Integer i = new Integer(100); // 这句话 没有改变 new Integer(100)所创建的对象 的值吗? i = i + 3; System.out.println(i); } }
代码运行的结果
为了知道 包装类对象的值不变 的原因,给最苦 对上述代码进行反编译
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://kpdus.tripod.com/jad.html // Decompiler options: packimports(3) fieldsfirst ansi space // Source File Name: Demo.java package jizuiku.demo; import java.io.PrintStream; public class Demo { public Demo() { } public static void main(String args[]) { Integer i = new Integer(100); i = Integer.valueOf(i.intValue() + 3); System.out.println(i); } }
(⊙o⊙)…哪里有新对象呀?没看到new呀? 这里就有一个关键的函数 Integer.valueOf(),给最苦 查看这个函数的源代码
/** * Returns an {@code Integer} instance representing the specified * {@code int} value. If a new {@code Integer} instance is not * required, this method should generally be used in preference to * the constructor {@link #Integer(int)}, as this method is likely * to yield significantly better space and time performance by * caching frequently requested values. * * This method will always cache values in the range -128 to 127, * inclusive, and may cache other values outside of this range. * * @param i an {@code int} value. * @return an {@code Integer} instance representing {@code i}. * @since 1.5 */ public static Integer valueOf(int i) { if (i >= IntegerCache.low && i <= IntegerCache.high) return IntegerCache.cache[i + (-IntegerCache.low)]; return new Integer(i); }
关键的一句: return new Integer(i); 哦,懂了!
学习资源:《Head First Java》+ Xjad + 源代码 + 清净的心地。如果您有优秀的书籍,也可以推荐给 给最苦。
博文是看书后,融入思考写成的。博文好,是书写得好。博文坏,是 给最苦 没认真。
以上是关于JavaSE8基础 Integer 包装类对象的值不变的主要内容,如果未能解决你的问题,请参考以下文章
初识八大基本数据类型的包装类——Java面向对象基础(25)