Compare two objects with .equals() and == operator

416,824

Solution 1

== compares object references, it checks to see if the two operands point to the same object (not equivalent objects, the same object).

If you want to compare strings (to see if they contain the same characters), you need to compare the strings using equals.

In your case, if two instances of MyClass really are considered equal if the strings match, then:

public boolean equals(Object object2) {
    return object2 instanceof MyClass && a.equals(((MyClass)object2).a);
}

...but usually if you are defining a class, there's more to equivalency than the equivalency of a single field (a in this case).


Side note: If you override equals, you almost always need to override hashCode. As it says in the equals JavaDoc:

Note that it is generally necessary to override the hashCode method whenever this method is overridden, so as to maintain the general contract for the hashCode method, which states that equal objects must have equal hash codes.

Solution 2

You should override equals

 public boolean equals (Object obj) {
     if (this==obj) return true;
     if (this == null) return false;
     if (this.getClass() != obj.getClass()) return false;
     // Class name is Employ & have lastname
     Employe emp = (Employee) obj ;
     return this.lastname.equals(emp.getlastname());
 }

Solution 3

The best way to compare 2 objects is by converting them into json strings and compare the strings, its the easiest solution when dealing with complicated nested objects, fields and/or objects that contain arrays.

sample:

import com.google.gson.Gson;


Object a = // ...;
Object b = //...;
String objectString1 = new Gson().toJson(a);
String objectString2 = new Gson().toJson(b); 

if(objectString1.equals(objectString2)){
    //do this
}

Solution 4

The overwrite function equals() is wrong. The object "a" is an instance of the String class and "object2" is an instance of the MyClass class. They are different classes, so the answer is "false".

Solution 5

It looks like equals2 is just calling equals, so it will give the same results.

Share:
416,824
Fastkowy
Author by

Fastkowy

Updated on January 07, 2020

Comments

  • Fastkowy
    Fastkowy over 4 years

    I constructed a class with one String field. Then I created two objects and I have to compare them using == operator and .equals() too. Here's what I've done:

    public class MyClass {
    
        String a;
    
        public MyClass(String ab) {
            a = ab;
        }
    
        public boolean equals(Object object2) {
            if(a == object2) { 
                return true;
            }
            else return false;
        }
    
        public boolean equals2(Object object2) {
            if(a.equals(object2)) {
                return true;
            }
            else return false;
        }
    
    
    
        public static void main(String[] args) {
    
            MyClass object1 = new MyClass("test");
            MyClass object2 = new MyClass("test");
    
            object1.equals(object2);
            System.out.println(object1.equals(object2));
    
            object1.equals2(object2);
            System.out.println(object1.equals2(object2));
        }
    
    
    }
    

    After compile it shows two times false as a result. Why is it false if the two objects have the same fields - "test"?