91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中的“==”和“equels”有什么區別

發布時間:2021-02-19 15:18:27 來源:億速云 閱讀:182 作者:小新 欄目:編程語言

小編給大家分享一下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中的“==”和“equels”有什么區別”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

漠河县| 汝城县| 娄烦县| 正宁县| 长子县| 集安市| 仙居县| 四平市| 临城县| 夏河县| 登封市| 陵水| 西昌市| 辽中县| 兴仁县| 柳林县| 罗江县| 红河县| 宁蒗| 大埔区| 洮南市| 华阴市| 基隆市| 石景山区| 泰来县| 亳州市| 霍邱县| 商都县| 丰镇市| 兰州市| 惠东县| 进贤县| 通化县| 富宁县| 六安市| 晋城| 五指山市| 象州县| 蒙城县| 拉萨市| 锡林郭勒盟|