Pregunta de entrevista de Backstop Solutions

What is the difference between .equals and ==?

Respuesta de la entrevista

Anónimo

16 ene 2011

In the case of objects, == looks at memory address, and .equals looks at the .equals method on the object (which should look at the content). For primitives, == will look at the content.