美文网首页
Integer缓存机制

Integer缓存机制

作者: zfz_amzing | 来源:发表于2020-03-21 14:33 被阅读0次

Intgeter的缓存机制

Integer缓存的源码如下,IntegerCache在类加载的时候,创建了256个缓存Integer对象,范围在-128~127.

private static class IntegerCache {
        static final int low = -128;
        static final int high;
        static final Integer[] cache;
        static Integer[] archivedCache;

        static {
            // high value may be configured by property
            int h = 127;
            String integerCacheHighPropValue =
                VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
            if (integerCacheHighPropValue != null) {
                try {
                    h = Math.max(parseInt(integerCacheHighPropValue), 127);
                    // Maximum array size is Integer.MAX_VALUE
                    h = Math.min(h, Integer.MAX_VALUE - (-low) -1);
                } catch( NumberFormatException nfe) {
                    // If the property cannot be parsed into an int, ignore it.
                }
            }
            high = h;

            // Load IntegerCache.archivedCache from archive, if possible
            VM.initializeFromArchive(IntegerCache.class);
            int size = (high - low) + 1;

            // Use the archived cache if it exists and is large enough
            if (archivedCache == null || size > archivedCache.length) {
                Integer[] c = new Integer[size];
                int j = low;
                for(int i = 0; i < c.length; i++) {
                    c[i] = new Integer(j++);
                }
                archivedCache = c;
            }
            cache = archivedCache;
            // range [-128, 127] must be interned (JLS7 5.1.7)
            assert IntegerCache.high >= 127;
        }

        private IntegerCache() {}
    }

Integer的值-128到127之间时,会引用缓存中创建好的对象,不会创建新的对象所以num1 ==num2输出为true。

超过这个范围就会创建新的对象,num3 == num4 输出为false

public static void main(String argv[]){
        Integer num1 = 1;
        Integer num2 = 1;

        Integer num3 = 129;
        Integer num4 = 129;

        System.out.println(num1 == num2); //true
        System.out.println(num3 == num4); //false

    }

相关文章

  • Integer缓存机制

    这是Integer中的缓存机制 默认缓存-128~127 Integer integer = 128;我们进...

  • 优秀博客集锦(一)

    理解Java Integer的缓存策略Java中Integer和其他包装类具有缓存机制,会缓存常用的一部分数字。 ...

  • Integer缓存机制

    Intgeter的缓存机制 Integer缓存的源码如下,IntegerCache在类加载的时候,创建了256个缓...

  • 2020-06-22:mark

    1. int和Integer类型之间的缓存关系 可能稍微了解一些的同学都知道Integer有一个缓存机制,Inte...

  • Integer的缓存机制

    英文原文:Java Integer Cache翻译地址:Java中整型的缓存机制原文作者:Java Papers翻...

  • Java中整型的缓存机制

    英文原文:Java Integer Cache 翻译地址:Java中整型的缓存机制 原文作者:Java Paper...

  • study plan

    一、Java基础 Integer实现原理及缓存机制[https://mp.weixin.qq.com/s/zvkS...

  • whc study plan

    一、Java基础 Integer实现原理及缓存机制[https://mp.weixin.qq.com/s/zvkS...

  • java知识整理-包装类型

    Integer的缓存 Integer内部实现了一个缓存,会缓存-128~127之间的数字。Integer在赋值的时...

  • Java基础-数据类型缓存解析

    基本类型缓存解析 Integer缓存解析: 1、使用自动装箱(Integer i = 1)方式创建Integer对...

网友评论

      本文标题:Integer缓存机制

      本文链接:https://www.haomeiwen.com/subject/slbyyhtx.html