博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 自动拆箱 自动装箱
阅读量:6150 次
发布时间:2019-06-21

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

hot3.png

自动装箱的定义就是  基本数据类型赋值给包装类型,  拆箱则相反。   

Integer integer = 122; // 自动装箱int num = integer; //自动拆箱

想看一下源码是怎么完成自动装箱和拆箱的。 发现第一行代码自动装箱走的方法是 valueOf ,  看图

这一段逻辑判断是, 如果传过来的值在Integer对象的缓存范围内,  就直接返回缓存好了的值, 否则另外新建一个Integer实例。

小结:Integer缓存了一个装有255个数值的Integer数组, 在内部静态类IntegerCache的常量Integer[] cache中, 如果要装箱的值在缓存中就直接用传过来的值和IntegerCache常量low取得cache中与传过来的值对应的的下标

先来看一下Integer的缓存, 以下是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 {@code -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; 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]; //如果不+1,k就<= 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() {} }

 

源码中解释, 缓存是用来支持自动装箱的对象标识语义 , 它的值介于-128 (low)到127(high)之间, 且是在初次使用的时候被初始化掉

也就是说在使用Integer的时候就已经缓存好了一段 [-128,-127......254,255] 这样的 Integer数组.   那么之前的自动装箱的valueOf的方法就可以豁然开朗了。 

 

接下来看自动拆箱调用的方法intValue

 

直接返回整型

转载于:https://my.oschina.net/addiction/blog/2231456

你可能感兴趣的文章
我的友情链接
查看>>
PCS子层有什么用?
查看>>
查看端口,关闭端口
查看>>
代码托管平台简介
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Mindjet MindManager 2019使用教程:
查看>>
游戏设计的基本构成要素有哪些?
查看>>
详解 CSS 绝对定位
查看>>
AOP
查看>>
我的友情链接
查看>>
NGUI Label Color Code
查看>>
.NET Core微服务之基于Polly+AspectCore实现熔断与降级机制
查看>>
vue组件开发练习--焦点图切换
查看>>
浅谈OSI七层模型
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>