Explain Dynamic method dispatch.
Answers
Answered by
2
Dynamic Method Dispatch
Dynamic Method Dispatch or Runtime Polymorphism in Java. Method overriding is one of the ways in which Java supports Runtime Polymorphism. Dynamic method dispatch is the mechanism by which a call to an overridden method is resolved at run time, rather than compile time.
Similar questions