Can anybody explain in detail the reason the overloaded method print(Parent parent)
is invoked when working with Child
instance in my test piece of
The JLS states in §8.4.9 Overloading:
So in your case:
this
) is of compile-time type Parent
, and so the method print(Parent)
is invoked.Worker
class was subclassed and the subclass would override that method, and the worker
instance was of that subclass, then the overridden method would be invoked.Double dispatch does not exist in Java. You have to simulate it, e.g. by using the Visitor Pattern. In this pattern, basically, each subclass implements an accept
method and calls the visitor with this
as argument, and this
has as compile-time type that subclass, so the desired method overloading is used.