What are the types of Polymorphism ? What is Run-Time polymorphism ?

Showing Answers 1 - 1 of 1 Answers

samiksc

  • Jan 12th, 2006
 

Polymorphism may be classified as

  1. Interface based
  2. Inheritance based.

It also may be classified as

  1. compile time polymorphism
  2. run time polymorphism

Runtime polymorphism is achieved by means of virtual methods declared by the base class which are overriden by a derived class. The method to be executed is determined at runtime depending on the type of object that has issued the call.

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