Different between== operator and equal to operator
Respuesta de la entrevista
Anónimo
2 oct 2024
== checks whether two references point to the same object.
equals() checks whether two objects have the same content, provided the method is correctly overridden.