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

前端 未结 15 1758
礼貌的吻别
礼貌的吻别 2020-11-22 01:13

I constructed a class with one String field. Then I created two objects and I have to compare them using == operator and .equals() too

15条回答
  •  面向向阳花
    2020-11-22 01:36

    Your implementation must like:

    public boolean equals2(Object object2) {
        if(a.equals(object2.a)) {
            return true;
        }
        else return false;
    }
    

    With this implementation your both methods would work.

提交回复
热议问题