Object equals 方法

2023-06-07,,

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;
}
}

Object equals 方法的相关教程结束。

《Object equals 方法.doc》

下载本文的Word格式文档,以方便收藏与打印。