Polymophism
The word polymorphism 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.
Real-life Illustration Polymorphism: A person at the same time can have different characteristics. Like a man at the same time is a father, a husband, and an employee. So the same person possesses different behavior in different situations. This is called polymorphism.
Polymorphism is considered one of the important features of Object-Oriented Programming. Polymorphism allows us to perform a single action in different ways. In other words, polymorphism allows you to define one interface and have multiple implementations. The word “poly” means many and “morphs” means forms, So it means many forms.
Example of Polymorphism
Output
In the above example, we have created a class Program
inside which we have two methods of the same name greet()
.
Here, one of the greet()
methods takes no parameters and displays "Hello"
. While the other greet()
method takes a parameter and displays "Hello Tim"
.
Hence, the greet()
method behaves differently in different scenarios. Or, we can say greet()
is polymorphic.
Types of Polymorphism
There are two types of polymorphism:
Compile Time Polymorphism / Static Polymorphism
Run-Time Polymorphism / Dynamic Polymorphism
I. Compile-Time Polymorphism
It is also known as static polymorphism. This type of polymorphism is achieved by function overloading or operator overloading.
Note: But Java doesn’t support the Operator Overloading.
Method Overloading
When there are multiple functions with the same name but different parameters then these functions are said to be overloaded. Functions can be overloaded by changes in the number of arguments or/and a change in the type of arguments.
Example 1:
Output
Output
C# Method Overloading
In a C# class, we can create methods with the same name in a class if they have:
different numbers of parameter
types of parameter
For example,
Here we have different types and numbers of parameters in totalSum()
. This is known as method overloading in C#. The same method will perform different operations based on the parameter.
Look at the example below,
Output
In the above example, the class Program
contains a method named totalSum()
that is overloaded. The totalSum()
method prints:
sum of integers if two integers are passed as an argument
sum of doubles if two doubles are passed as an argument
2. C# Operator Overloading
Some operators in C# behave differently with different operands. For example,
+
operator is overloaded to perform numeric addition as well as string concatenation and
Now let's see how we can achieve polymorphism using operator overloading.
The +
operator is used to add two entities. However, in C#, the +
operator performs two operations:
1. Adding two numbers,
2. Concatenating two strings,
Here, we can see that the +
operator is overloaded in C# to perform two operations: addition and concatenation.
II. Runtime Polymorphism
It is also 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. Method overriding, on the other hand, occurs when a derived class has a definition for one of the member functions of the base class. That base function is said to be overridden.
Example
Output
Explanation of the above code:
Here in this program, When an object of a child class is created, then the method inside the child class is called. This is because The method in the parent class is overridden by the child class. Since The method is overridden, This method has more priority than the parent method inside the child class. So, the body inside the child class is executed.
Virtual functions
It allows an object of a derived class to behave as if it were an object of the base class. The derived class can override the virtual function of the base class to provide its own implementation. The function call is resolved at runtime, depending on the actual type of the object.
Polymorphism in Java is a concept that allows objects of different classes to be treated as objects of a common class. It enables objects to behave differently based on their specific class type.
Method Overriding in C#
During inheritance in C#, if the same method is present in both the superclass and the subclass. Then, the method in the subclass overrides the same method in the superclass. This is called method overriding.
In this case, the same method will perform one operation in the superclass and another operation in the subclass.
We can use virtual
and override
keywords to achieve method overriding.
Let's see the example below,
Output
In the above example, we have created a superclass: Polygon
and a subclass: Square
.
Notice, we have used virtual
and override
with methods of the base class and derived class respectively. Here,
virtual
- allows the method to be overridden by the derived classoverride
- indicates the method is overriding the method from the base class
In this way, we achieve method overriding in C#.
Note: A method in derived class overrides the method in base class if the method in derived class has the same name, same return type and same parameters as that of the base class.
Advantages of Polymorphism
Increases code reusability by allowing objects of different classes to be treated as objects of a common class.
Improves readability and maintainability of code by reducing the amount of code that needs to be written and maintained.
Supports dynamic binding, enabling the correct method to be called at runtime, based on the actual class of the object.
Enables objects to be treated as a single type, making it easier to write generic code that can handle objects of different types.
Disadvantages of Polymorphism
Can make it more difficult to understand the behavior of an object, especially if the code is complex.
This may lead to performance issues, as polymorphic behavior may require additional computations at runtime.
Last updated