Polymorphism in OOP π
What is Polymorphism? π€
Polymorphism is an OOP principle that allows one method, function, or operator to behave differently based on the context. It enables code flexibility and reusability.
Real-Life Example π:
A person π§ can have different roles:
- As a student, they study π.
- As a friend, they socialize π£οΈ.
- As an employee, they work πΌ.
Despite being the same person, they act differently in different situations. This is polymorphism!
Types of Polymorphism π
1οΈβ£ Compile-time Polymorphism (Method Overloading) ποΈ
Method overloading allows multiple methods in the same class to have the same name but with different parameters.
Example π:
class Calculator {
int add(int a, int b) {
return a + b;
}
int add(int a, int b, int c) {
return a + b + c;
}
}
public class Main {
public static void main(String[] args) {
Calculator calc = new Calculator();
System.out.println(calc.add(5, 10)); // Output: 15
System.out.println(calc.add(5, 10, 15)); // Output: 30
}
}
2οΈβ£ Run-time Polymorphism (Method Overriding) π
Method overriding allows a child class to provide a different implementation of a method that exists in the parent class.
Example π:
class Animal {
void makeSound() {
System.out.println("Animal makes a sound");
}
}
class Dog extends Animal {
@Override
void makeSound() {
System.out.println("Dog barks");
}
}
public class Main {
public static void main(String[] args) {
Animal myAnimal = new Dog();
myAnimal.makeSound(); // Output: Dog barks
}
}
Method Overloading vs Method Overriding π
Feature | Method Overloading ποΈ | Method Overriding π |
Definition | Multiple methods with the same name but different parameters | Redefining a method in a child class that exists in a parent class |
Occurs At | Compile-time | Run-time |
Access Modifiers | Can have any modifier | Cannot override private , final , or static methods |
Why Use Polymorphism? π€
β
Code Flexibility: The same function behaves differently based on input.
β
Code Reusability: Methods can be reused with different parameters.
β
Extensibility: New behaviors can be added without modifying existing code.
Conclusion π―
Polymorphism makes OOP more flexible, reusable, and scalable. It allows the same code to work with different data types and behaviors, making it a key principle in software development! π
π¬ Have you used polymorphism in your projects? Share your thoughts below!
Subscribe to my newsletter
Read articles from ππ¬π³π¦π°π₯ ππ¬πΆππ© directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
