博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[转载] 在java中为什么变量1000 = 1000 返回false,但是100=100返回true?
阅读量:5349 次
发布时间:2019-06-15

本文共 3513 字,大约阅读时间需要 11 分钟。

ps:题目的意思是指定义相同内容的不同变量之间的==比较。如果直接比较(100 == 100)的结果是true。

运行以下代码:

Integer a = 1000, b = 1000;        System.out.println(a == b);        Integer c = 100, d = 100;        System.out.println(c == d);

结果是:

falsetrue

我们知道,如果两个引用指向不同的对象,即使对象拥有相同的内容时,他们用==比较的结果就是不相等(返回false)。

按道理说,最后返回的结果应该也是false才对。但是事实并非如此。

这就是有趣的地方,如果你查看Integer.java类,你会发现Integer类有一个叫做IntegerCache的内部类,这个内部类缓存了所有在-128和127之间的Integer对象。

/** * Cache to support the object identity semantics of autoboxing for values between * -128 and 127 (inclusive) as required by JLS. * * The cache is initialized on first usage.  The size of the cache * may be controlled by the -XX:AutoBoxCacheMax=
option. * During VM initialization, java.lang.Integer.IntegerCache.high property * may be set and saved in the private system properties in the * sun.misc.VM class. */private static class IntegerCache { static final int low = -128; static final int high; static final Integer cache[]; static { // high value may be configured by property int h = 127; //获取配置中的high值,默认的最大值是127,但是这个值也是可以自定义写在配置文件 String integerCacheHighPropValue = sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high"); if (integerCacheHighPropValue != null) { int i = parseInt(integerCacheHighPropValue); i = Math.max(i, 127); // Maximum array size is Integer.MAX_VALUE h = Math.min(i, Integer.MAX_VALUE - (-low) -1); } high = h; cache = new Integer[(high - low) + 1]; int j = low; for(int k = 0; k < cache.length; k++) cache[k] = new Integer(j++);//初始化数组的值 } private IntegerCache() {}}

所以像以下定义的Integer变量会存在Integer缓存中。

Integer c = 100;//100在-128和127之间。

内部实现是:

Integer i = Integer.valueOf(100);

现在再查看一下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) { assert IntegerCache.high >= 127; if (i >= IntegerCache.low && i <= IntegerCache.high) return IntegerCache.cache[i + (-IntegerCache.low)]; return new Integer(i);}如果值在-128至127的范围之间,它从缓存中返回实际的值。所以Integer c = 100, d = 100;实际是指向同一个对象。这就是当变量c和d比较(==)的结果是true的原因。System.out.println(c == d);//true现在你可能会问,为什么这需要缓存呢?逻辑上的理由是,在这个范围内的“较小”的整数使用远大于较大的,所以使用相同的底层对象是值得的,以减少潜在的内存占用。以下代码通过反射来获取Integer缓存变量。public class IntegerDemo {public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException { Class cache = Integer.class.getDeclaredClasses()[0]; //1 Field myCache = cache.getDeclaredField("cache"); //2 myCache.setAccessible(true);//3 Integer[] newCache = (Integer[]) myCache.get(cache); //4 for(int i = 0; i < newCache.length; i++){ System.out.printf("index[%d]-->vlaue[%d]\n",i,newCache[i]); } } }
转载自: 作者:林补链接:https://zhuanlan.zhihu.com/p/20703688来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

转载于:https://www.cnblogs.com/miaoying/p/5936625.html

你可能感兴趣的文章
我的PHP学习之路
查看>>
【题解】luogu p2340 奶牛会展
查看>>
对PostgreSQL的 SPI_prepare 的理解。
查看>>
解决响应式布局下兼容性的问题
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Lucene 学习之二:数值类型的索引和范围查询分析
查看>>
软件开发工作模型
查看>>
Java基础之字符串匹配大全
查看>>
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Web服务器的原理
查看>>
常用的107条Javascript
查看>>