Let’s say that you have overridden an object’s equals() and hashCode() methods, so that they use the object’s fields.
How you do you check if two references are to the same object, ala the stock equals() method?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
==on objects to perform identity comparison.That is what the default implementation of
equals()does, but one normally overridesequals()to serve as an ‘equivalent content’ check.