What is Dynamic Polymorphism?

Showing Answers 1 - 1 of 1 Answers

samiksc

  • Jan 19th, 2006
 

Dynamic polymorphism is also known as runtime polymorphism.

It is achieved by means of virtual functions.

Depending on the type of object referred by a variable the decision about the method to be called (whether to call base class implementation or the derived class implementation) is taken at runtime. This is dynamic polymorphism.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions