Can you use == for objects in Java?

In Java, the == operator compares that two references are identical or not . Whereas the equals() method compares two objects. Objects are equal when they have the same state (usually comparing variables). Objects are identical when they share the class identity.

Leave a Reply

Your email address will not be published. Required fields are marked *