package com.mydemo.controller;

public class TestEquals {
    public static void main(String[] args) {
        Dog d1 = new Dog(1, 2, 3);
        Dog d2 = new Dog(1, 2, 3);
        // d1 永远不等于 d2,比较的是两个对象的引用
        System.out.println(d1 == d2);
        // Object 的equals 方法默认比较两个对象的引用
        System.out.println(d1.equals(d2));
        // String 类重写了Object 的equals方法
    }
}
class Dog {
    int color;
    int weight;
    int height;
    
    public Dog(int color, int weight, int height) {
        this.color = color;
        this.weight = weight;
        this.height = height;
    }
}

 

相关文章:

  • 2021-05-30
  • 2021-11-18
  • 2021-05-27
  • 2022-01-27
  • 2021-11-04
  • 2021-05-30
  • 2021-10-12
  • 2022-12-23
猜你喜欢
  • 2021-10-27
  • 2021-05-28
  • 2021-09-23
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
相关资源
相似解决方案