What is the difference between methods ## and hashCode?
They seem to be outputting the same values no matter which class or hashCode overloading I use. Google doesn't help, either, as it cannot find symbol ##.
|
"Subclasses" of
Of course this is boxed to a call to:
We might prefer it to be:
We should expect this given that the
Luckily:
|
|||
|
|
|
|
|||
|
|
1.0 hashCodev1.0 ##v1 hashCodev1 ##— scala-lang.org/api/current/scala/Any.html – Debilski Jan 30 '12 at 17:501.hashCode==1.##, and1.2.hashCode==1.2.##. The only thing that behaves differently is1.0.hashCode!=1.0.##(so##is better suited for comparing numbers). – 0__ Jan 30 '12 at 18:14