|
2 |
edited tags
|
||
|
1 |
|
||
When overriding equals in Java, why does it not work to use a parameter other than Object?I ran into an interesting behavior recently. It seems that if I override .equals() to take a parameter other than Object, it doesn't get called. Can anyone explain to me why this is happening? It seems to violate my understanding of polymorphism in OOP, but maybe I'm missing something. Here's much simpler code that shows what I'm seeing:
When this is run, it prints "
Why isn't it figuring out which version of the function to call based on the type of the parameter?
|
||||
