Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between == and equals in Scala, and when to use which?

Is the implementation same as in Java?

share|improve this question

2 Answers

up vote 29 down vote accepted

You normally use ==, it routes to equals, except that it treats nulls properly. Reference equality (rarely used) is eq.

share|improve this answer
1  
Does it also apply when using Java libraries? – Amitabh Oct 6 '11 at 22:50
8  
It does. For instance new java.util.ArrayList[Int]() == new java.util.ArrayList[Int](), as equals on ArrayList is content equality. – Didier Dupont Oct 6 '11 at 23:07

== is a final method, and calls .equals, which is not final.

This is radically different than Java, where == is an operator rather than a method and strictly compares reference equality for objects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.