The equals method for class Object implements the most discriminating possible equivalence relation on objects; that is, for any reference values x and y, this method returns true if and only if x and y refer to the same object (x==y has the value true).所以,在实际中,如果想判断两对象的值是否相等,equals方法需要被重载的。