Java
Programming and Technical
Programming
Definition
What is Runtime Polymorphism?
Read Solution (Total 2)
-
- Runtime polymorphism simply means that the decision that which version of the method(whether it is the base class or sub class) is to be called is decided at runtime depending upon the objects that it points to the base class version
- 9 years agoHelpfull: Yes(0) No(0)
- Runtime Polymorphism is a process in which a call to an overridden method is resolved at runtime rather than compile time.
Ex: Method Overriding is the best example of Runtime Polymorphism. - 3 years agoHelpfull: Yes(0) No(0)
Java Other Question