博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(面试题)有关Integer
阅读量:6177 次
发布时间:2019-06-21

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

今天在一家公司做了个面试题:运行下列代码,输出结果是什么

  Integer a=new Integer("12");

  Integer b=new Integer("12");
  
  if (a.equals(b))
  {
   System.out.println(true);
  }
  else
  {
   System.out.println(false);
  }
  
  if (a==b)
  {
   System.out.println(true);
  }
  else
  {
   System.out.println(false);
  }

 

 

很显然,结果为:

true

false

本人反而搞错了,只怪于对于Integer对象和Integer.valueOf方法记混淆了,虽然通过了面试,但这个错误令人汗颜呀!!!

在此介绍一下Integer Long对象的valueOf方法

------------------------------------------------------------------------------------

Integer.valueOf 缓存了-128到127的Integer对象

测试代码:
         boolean b1 =  Integer.valueOf(127)==Integer.valueOf(127); // true
         boolean b2 = Integer.valueOf(128)==Integer.valueOf(128) ; // false

         boolean b3 =  Integer.valueOf(-128)==Integer.valueOf(-128); // true
         boolean b4 = Integer.valueOf(-129)==Integer.valueOf(-129) ; // false

Integer.valueOf()的源代码及注释:
注释部分:
If a new Integer instance is not required, this method should generally be used in preference to the constructor Integer(int), as this method is likely to yield significantly better space and time performance by caching frequently requested values.
注释结束。
public static Integer valueOf(int i) {


    final int offset = 128;
    if (i >= -128 && i <= 127) { // must cache
        return IntegerCache.cache[i + offset];
    }
        return new Integer(i);
}

由上面可见,valueOf会将常用的值(-128 to 127)cache起来。当i值在这个范围时,会比用构造方法Integer(int)效率和空间上更好。
因此,对小数据intInteger封装,尽量的使用Integer.valueOf()创建,而不要使用new来创建。因为Integer类缓存了从-128256个 状态的Integer,减少了重复对象的创建。
Long也是如此

小结:对于比较偏的知识点,要记的就一定要记牢!

转载地址:http://vkafa.baihongyu.com/

你可能感兴趣的文章
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
[译]ECMAScript.next:TC39 2012年9月会议总结
查看>>
【Xcode】编辑与调试
查看>>
用tar和split将文件分包压缩
查看>>
[BTS] Could not find stored procedure 'mp_sap_check_tid'
查看>>
PLSQL DBMS_DDL.ALTER_COMPILE
查看>>
Activity生命周期
查看>>
高仿UC浏览器弹出菜单效果
查看>>
Ubuntu忘记密码,进不了系统的解决方法
查看>>
[原创]白盒测试技术思维导图
查看>>
<<Information Store and Management>> 读书笔记 之八
查看>>
Windows 8 开发之设置合约
查看>>
闲说HeartBeat心跳包和TCP协议的KeepAlive机制
查看>>