码迷,mamicode.com
首页 > 其他好文 > 详细

valueOf与new的区别

时间:2014-10-29 10:43:04      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   log   amp   时间   new   

Integer a = new Integer(1);

Integer b = Integer.valueOf(1);

遇上两句话有什么区别?

请看Integer的源码中关于valueOf的简介:

1 public static Integer valueOf(int i) {
2         assert IntegerCache.high >= 127;
3         if (i >= IntegerCache.low && i <= IntegerCache.high)
4             return IntegerCache.cache[i + (-IntegerCache.low)];
5         return new Integer(i);
6     }

其中可以看到如果在合适的区间范围内它不回去创建新的对象,而是在IntegerCache中去查找,从而节省时间。

valueOf与new的区别

标签:style   blog   color   sp   div   log   amp   时间   new   

原文地址:http://www.cnblogs.com/dashen/p/4058706.html

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