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

Is the implementation same as in Java?

link|improve this question

feedback

2 Answers

up vote 22 down vote accepted

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

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

== 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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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