Why we override equals() method?
1802
13-May-2015
Updated on 22-Sep-2020
Anonymous User
13-May-2015The equals method is used to check whether two objects are same or not. It needs to be overridden if we want to check the objects based on property.
For example, Employee is a class that has 3 data members: id, name and salary. But, we want to check the equality of employee object on the basis of salary. Then, we need to override the equals() method.