zoukankan      html  css  js  c++  java
  • Integer与int的种种比较

    1. package com.lxm.basics;
    2. public class IntegerTest {
    3. public static void main(String[] args) {
    4. Integer a1 = 45;
    5. int a2 = 45;
    6. Integer a3 = Integer.valueOf(45);
    7. Integer a4 = new Integer(45);
    8. Integer a5 = new Integer(45);
    9. System.out.println("a1==a2:"+(a1==a2));
    10. System.out.println("a1==a3:"+(a1==a3));
    11. System.out.println("a1==a4:"+(a1==a4));
    12. System.out.println("a2==a3:"+(a2==a3));
    13. System.out.println("a2==a4:"+(a2==a4));
    14. System.out.println("a3==a4:"+(a3==a4));
    15. System.out.println("a4==a5:"+(a4==a5));
    16. StringBuffer sb = new StringBuffer();
    17. String s = null;
    18. }
    19. }
    20. /*a1==a2:true
    21. a1==a3:true
    22. a1==a4:false
    23. a2==a3:true
    24. a2==a4:true
    25. a3==a4:false
    26. a4==a5:false*/

    如果面试官问Integer与int的区别:估计大多数人只会说道两点,Ingeter是int的包装类,int的初值为0,Ingeter的初值为null。但是如果面试官再问一下Integer i = 1;int ii = 1; i==ii为true还是为false?估计就有一部分人答不出来了,如果再问一下其他的,估计更多的人会头脑一片混乱。所以我对它们进行了总结,希望对大家有帮助。

      首先看代码:

    复制代码
     1 package com.test;
     2 /** 3  * 
     4  * @author 刘玲
     5  *
     6  */ 7 public class TestInteger {
     8 9     /**10      * @param args
    11      */12     public static void main(String[] args) {
    13         int i = 128;
    14         Integer i2 = 128;
    15         Integer i3 = new Integer(128);
    16         //Integer会自动拆箱为int,所以为true17         System.out.println(i == i2);
    18         System.out.println(i == i3);
    19         System.out.println("**************");
    20         Integer i5 = 127;//java在编译的时候,被翻译成-> Integer i5 = Integer.valueOf(127);21         Integer i6 = 127;
    22         System.out.println(i5 == i6);//true23         /*Integer i5 = 128;
    24         Integer i6 = 128;
    25         System.out.println(i5 == i6);//false
    26 */        Integer ii5 = new Integer(127);
    27         System.out.println(i5 == ii5); //false28         Integer i7 = new Integer(128);
    29         Integer i8 = new Integer(123);
    30         System.out.println(i7 == i8);  //false31     }
    3233 }
    复制代码

    首先,17行和18行输出结果都为true,因为Integer和int比都会自动拆箱(jdk1.5以上)。

    22行的结果为true,而25行则为false,很多人都不动为什么。其实java在编译Integer i5 = 127的时候,被翻译成-> Integer i5 = Integer.valueOf(127);所以关键就是看valueOf()函数了。只要看看valueOf()函数的源码就会明白了。JDK源码的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     }

    看一下源码大家都会明白,对于-128到127之间的数,会进行缓存,Integer i5 = 127时,会将127进行缓存,下次再写Integer i6 = 127时,就会直接从缓存中取,就不会new了。所以22行的结果为true,而25行为false。

    对于27行和30行,因为对象不一样,所以为false。

    我对于以上的情况总结如下:

      ①无论如何,Integer与new Integer不会相等。不会经历拆箱过程,i3的引用指向堆,而i4指向专门存放他的内存(常量池),他们的内存地址不一样,所以为false
      ②两个都是非new出来的Integer,如果数在-128到127之间,则是true,否则为false
      java在编译Integer i2 = 128的时候,被翻译成-> Integer i2 = Integer.valueOf(128);而valueOf()函数会对-128到127之间的数进行缓存
      ③两个都是new出来的,都为false
      ④int和integer(无论new否)比,都为true,因为会把Integer自动拆箱为int再去比

     






  • 相关阅读:
    APS.NET MVC + EF (14)---项目框架搭建
    APS.NET MVC + EF (11)---过滤器
    APS.NET MVC + EF (10)---使用AJAX
    APS.NET MVC + EF (06)---模型
    APS.NET MVC + EF (08)---数据注解和验证
    APS.NET MVC + EF (07)---表单和HTML辅助方法
    APS.NET MVC + EF (05)---控制器
    错误 1 error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
    VS2010中项目配置引入GDAL
    Win7(32/64)VS2010配置编译GDAL环境(图文教程+亲测可用!)
  • 原文地址:https://www.cnblogs.com/yldf/p/4db3b1113befe9fa526e45d60e2cebfe.html
Copyright © 2011-2022 走看看