Java.lang.Object.equals() 方法

描述

java.lang.Object.equals(Object obj) 指示其他对象是否"等于"这个对象。

Object类的equals方法实现了对象上最有区别的可能等价关系; 也就是说,对于任何非空引用值 x 和 y,当且仅当 x 和 y 引用同一个对象(x == y 的值为 true)时,此方法才返回 true。

请注意,当hashCode方法被重写时,通常需要重写该方法,以维护hashCode方法的一般约定,即相等的对象必须具有相等的哈希码。


声明

以下是 java.lang.Object.equals() 方法的声明。

public boolean equals(Object obj)

参数

obj − 要与之比较的参考对象。


返回值

如果此对象与 obj 参数相同,则此方法返回 true;否则返回 false


异常

NA


示例

下面的例子展示了 lang.Object.equals() 方法的使用。

package com.tutorialspoint;

public class ObjectDemo {

   public static void main(String[] args) {

      // get an integer, which is an object
      Integer x = new Integer(50);

      // get a float, which is an object as well
      Float y = new Float(50f);

      // check if these are equal,which is 
      // false since they are different class
      System.out.println("" + x.equals(y));

      // check if x is equal with another int 50
      System.out.println("" + x.equals(50));
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

false
true