代码详解java里的“==”和“equels”区别

 更新时间:2018年02月10日 15:37:18   作者:Haker_枫  
本篇文章通过实例代码给大家详细解释了java里的“==”和“equels”区别,对此有兴趣的朋友跟着小编一起学习下。

测试1:

先看一组String类型比较,废话不多说,直接上代码:

public class Test {

  public static void main(String[] args) {
    String a = "java书苑";
    String b = "java书苑";
    String c = new String("java书苑");
    String d = new String("java书苑").intern();

    if(a == b){
      System.out.println("a == b");
    }else{
      System.out.println("a != b");
    }

    if(a.equals(b)){
      System.out.println("a.equals(b)");
    }else{
      System.out.println("!a.equals(b)");
    }

    if(a == c){
      System.out.println("a == c");
    }else{
      System.out.println("a != c");
    }

    if(a.equals(c)){
      System.out.println("a.equals(c)");
    }else{
      System.out.println("!a.equals(c)");
    }

    if(a == d){
      System.out.println("a == d");
    }else{
      System.out.println("a != d");
    }

    if(a.equals(d)){
      System.out.println("a.equals(d)");
    }else{
      System.out.println("a.equals(d)");
    }
  }
}

输出结果:

a == b
a.equals(b)
a != c
a.equals(c)
a == d
a.equals(d)

总结:

结果a == b:程序在运行的时候会创建一个字符串缓冲池,在String a = “java书苑”时, “java书苑”被放到了字符串缓冲池中,当 String b = “java书苑” 创建字符串的时候,程序首先会在这个String缓冲池中寻找相同值的对象,所以在b被创建的时候,程序找到了具有相同值的a,将b 引用 a 所引用的对象。所以a和b引用的同一个对象,故a == b。

结果a != c:String c = new String(“java书苑”)时new了一个新的对象,故不从String缓冲池寻找,二十直接创建一个新的对象。所以a != c。

结果a == d :当调用 intern 方法时,如果池已经包含一个等于此 String 对象的字符串(该对象由 equals(Object) 方法确定),则返回池中的字符串。否则,将此 String 对象添加到池中,并且返回此 String 对象的引用。所有d调用的同样是a的对象。
equals比较的是值,故值一样时便相等。

测试2:

这是一组int类型和Integer类型的测试:

public class Test {

  public static void main(String[] args) {

    int a = 127;
    int a1 = 127;

    int b = 128;
    int b1 = 128;


    Integer c = 127;
    Integer c1 = 127;

    Integer d = 128;
    Integer d1 = 128;

    if(a == a1){
      System.out.println("a == a1");
    }else{
       System.out.println("a != a1");
    }

    if(b == b1){
      System.out.println("b == b1");
    }else{
       System.out.println("b != b1");
    }

    if(c == c1){
      System.out.println("c == c1");
    }else{
       System.out.println("c != c1");
    }

    if(d == d1){
      System.out.println("d == d1");
    }else{
       System.out.println("d != d1");
    }
  }
}

输出的结果:

a == a1
b == b1
c == c1
d != d1

结果”a == a1”和”b == b1”:int 是基本类型,直接存数值,而integer是对象,用一个引用指向这个对象,多以比较的时候”a == a1”和”b == b1”。

结果“c == c1”和“d != d1”这里可能有人会有疑问,为什么“d != d1”.我们一起看一下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 -XX:AutoBoxCacheMax=<size> 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) {
        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);
      }
      high = h;

      cache = new Integer[(high - low) + 1];
      int j = low;
      for(int k = 0; k < cache.length; k++)
        cache[k] = new Integer(j++);
    }

    private IntegerCache() {}
  }

  /**
   * Returns an {@code Integer} instance representing the specified
   * {@code int} value. If a new {@code Integer} instance is not
   * required, this method should generally be used in preference to
   * the constructor {@link #Integer(int)}, as this method is likely
   * to yield significantly better space and time performance by
   * caching frequently requested values.
   *
   * This method will always cache values in the range -128 to 127,
   * inclusive, and may cache other values outside of this range.
   *
   * @param i an {@code int} value.
   * @return an {@code Integer} instance representing {@code i}.
   * @since 1.5
   */
  public static Integer valueOf(int i) {
    assert IntegerCache.high >= 127;
    if (i >= IntegerCache.low && i <= IntegerCache.high)
      return IntegerCache.cache[i + (-IntegerCache.low)];
    return new Integer(i);
  }

结论:这里 Integer 会初始化一个[-128,127]的常量池,如果数值在这个范围时,则引用的是同一个对象,如果不在这个范围,通过源码可以看出返回的是new了一个新的对象: return new Integer(i);

所以,结果“c == c1”是引用了同一个对象,结果“d != d1”,是new了一个新的对象,故不等。

相关文章

  • Java for循环倒序输出的操作代码

    Java for循环倒序输出的操作代码

    在Java中,要实现一个for循环的倒序输出,通常我们会使用数组或集合(如ArrayList)作为数据源,然后通过倒序遍历这个数组或集合来实现,这篇文章主要介绍了Java for循环倒序输出,需要的朋友可以参考下
    2024-07-07
  • 使用try-with-resource的输入输出流自动关闭

    使用try-with-resource的输入输出流自动关闭

    这篇文章主要介绍了使用try-with-resource的输入输出流自动关闭方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-07-07
  • Springboot PostMapping无法获取数据问题及解决

    Springboot PostMapping无法获取数据问题及解决

    这篇文章主要介绍了Springboot PostMapping无法获取数据问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-05-05
  • 缓存工具类ACache使用方法详解

    缓存工具类ACache使用方法详解

    这篇文章主要为大家详细介绍了缓存工具类ACache的使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-08-08
  • Java使用Jdbc连接Oracle执行简单查询操作示例

    Java使用Jdbc连接Oracle执行简单查询操作示例

    这篇文章主要介绍了Java使用Jdbc连接Oracle执行简单查询操作,结合实例形式详细分析了java基于jdbc实现Oracle数据库的连接与查询相关操作技巧,需要的朋友可以参考下
    2019-09-09
  • SpringBoot通过配置Swagger权限解决Swagger未授权访问漏洞问题

    SpringBoot通过配置Swagger权限解决Swagger未授权访问漏洞问题

    这篇文章主要介绍了SpringBoot通过配置Swagger权限解决Swagger未授权访问漏洞问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-05-05
  • Java面试之高级特性基础总结

    Java面试之高级特性基础总结

    这篇文章主要为大家详细介绍了10个Java高级特性基础相关的问题,也是大家面试中常常会遇到的问题。文中的示例代讲解详细,感兴趣的可以了解一下
    2023-01-01
  • SpringBoot多数据源切换实现代码(Mybaitis)

    SpringBoot多数据源切换实现代码(Mybaitis)

    实际工作中我们会遇到springboot项目初始化启动时候,不能指定具体连接哪个数据源的时候,不同的接口连接不同的数据源或者前端页面指定连接某个数据源等等情况,就会遇到动态数据源切换的问题,需要的朋友可以参考下
    2022-04-04
  • Springboot重写addInterceptors()方法配置拦截器实例

    Springboot重写addInterceptors()方法配置拦截器实例

    这篇文章主要介绍了Springboot重写addInterceptors()方法配置拦截器实例,spring boot抛弃了复杂的xml配置,我们可以自定义配置类(标注@Configuration注解的类)来实现WebMvcConfigurer接口,并重写addInterceptors()方法来配置拦截器,需要的朋友可以参考下
    2023-09-09
  • Java SpringBoot核心源码详解

    Java SpringBoot核心源码详解

    这篇文章主要为大家介绍了Java SpringBoot核心源码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2021-12-12

最新评论