码迷,mamicode.com
首页 > 编程语言 > 详细

终极蛇皮上帝视角之铁头娃之鲁迅之暑假闲的慌之bilibili看尚学堂网课的非洲酋长java小复习

时间:2019-07-07 17:47:40      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:imu   syntax   add   就是   word   key   int   null   keyword   

转自https://www.sxt.cn/Java_jQuery_in_action/eight-cache-problem.html

第一个点

技术图片

自动装箱与拆箱的功能是所谓的“编译器蜜糖(Compiler Sugar)”

自动装箱调用的是valueOf()方法,而不是new Integer()方法。

自动拆箱调用的xxxValue()方法。

 

第二个点

【示例8-8】IntegerCache类相关源码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
        String integerCacheHighPropValue =
                sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
        if (integerCacheHighPropValue != null) {
            try {
                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);
            catch( NumberFormatException nfe) {
                // If the property cannot be parsed into an int, ignore it.
            }
        }
        high = h;
        cache = new Integer[(high - low) + 1];
        int j = low;
        for(int k = 0; k < cache.length; k++)
            cache[k] = new Integer(j++);
 
        // range [-128, 127] must be interned (JLS7 5.1.7)
        assert IntegerCache.high >= 127;
    }
    private IntegerCache() {}
}

      由上面的源码我们可以看到,静态代码块的目的就是初始化数组cache的,这个过程会在类加载时完成。

技术图片

 

 

因为那个一开始就把-128~127的东西加到cache数组,所以一样

1234不在cache范围,所以不一样

 技术图片

 

终极蛇皮上帝视角之铁头娃之鲁迅之暑假闲的慌之bilibili看尚学堂网课的非洲酋长java小复习

标签:imu   syntax   add   就是   word   key   int   null   keyword   

原文地址:https://www.cnblogs.com/xx123/p/11146842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!