What is the difference between == and equals in Scala, and when to use which?
Is the implementation same as in Java?
|
What is the difference between == and equals in Scala, and when to use which? Is the implementation same as in Java? |
||||
|
|
|
You normally use ==, it routes to equals, except that it treats nulls properly. Reference equality (rarely used) is eq. |
|||||||||
|
|
This is radically different than Java, where |
|||
|
|