What are the different types of polymorphism?

Questions by suji   answers by suji

Showing Answers 1 - 19 of 19 Answers

rahultripathi

  • Sep 24th, 2005
 

There are three types of polymophism

1.Function overloading

2. Oparetor Overloading

3. Vartual function

priya

  • Mar 4th, 2006
 

types of polymorphism: 1) run time polymorphism 2)compile time polymorphism

dngr_dv

  • Apr 4th, 2006
 

hi,

There are two types of polymorphisms. They are

1) Compiletime Polymorphism

2) Runtime Polymorphism

In compiletime polymorphism we have Function Overloading and Operator Overloading.

In Runtime polymorphism we have Virtual Functions and Dynamic Binding.

Thanks....

Vinay

  • Jul 20th, 2011
 

There is only one type of polymorphism & that is run time polymorphism.

Refer advance text like Kathy Sierra books on Java & Grady Booch books on OOP's they explained why compile time polymorphism is not actually polymorphism

  Was this answer useful?  Yes

naina verma

  • Aug 15th, 2011
 

Types of Polymorphism:
1. Static / Compile time / Early binding polymorphism :
a. Function overloading
b. Operator overloading

2. Dynamic / Run time / Late binding:
a. Virtual function

sharad chougale

  • Apr 18th, 2014
 

There are two types of polymorphism in c++

1) Function Overloading
2) Operator Overloading

And java Polymorphism
1) Method Overloading
2) Method Overriding

  Was this answer useful?  Yes

sharad chougale

  • Apr 18th, 2014
 

There are two types polymorphism in c++
1) Function Overloading
2) Operater Overloading
Java polymorphism types
1) Method Overloading
2) Method Ovrriding

  Was this answer useful?  Yes

ramalakshmi

  • Jun 14th, 2014
 

there are two types of polymorphism in c++:

1.) static polymorphism: operator and function overloading.
2.) dynamic polymorphism: virtual functions.

  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