Content
What isPolymorphism
Types of polymorphism
Ad-hoc polymorphism
Pure polymorphism
Advantages
Disadvantages
3.
Polymorphism
The wordpolymorphism means having many
forms. In simple words, we can define
polymorphism as the ability of a message to be
displayed in more than one form.
4.
Real life exampleof
polymorphism
A person at the same time
can have different
characteristic. Like a man at
the same time is a father, a
husband, an employee. So
the same person posses
different behavior in different
situations. This is called
polymorphism.
Compile time polymorphism
Itis also known as static polymorphism. This
type of polymorphism is achieved by
function overloading.
7.
Runtime polymorphism
It isalso known as Dynamic Method
Dispatch. It is a process in which a function
call to the overridden method is resolved at
Runtime. This type of polymorphism is
achieved by Method Overriding.
8.
Ad-hoc polymorphism
• Thead hoc polymorphism is a technique used to define the same method with different implementations
and different arguments. In a java programming language, ad hoc polymorphism carried out with a
method overloading concept.
• In ad hoc polymorphism the method binding happens at the time of compilation. Ad hoc polymorphism is
also known as compile-time polymorphism.
9.
Pure polymorphism
• Thepure polymorphism is a technique used to define the same method with the
same arguments but different implementations. In a java programming language,
pure polymorphism carried out with a method overriding concept.
• Every function call binding with the respective overridden method based on the
object reference.