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 πŸ†š

FeatureMethod Overloading πŸ—οΈMethod Overriding 🎭
DefinitionMultiple methods with the same name but different parametersRedefining a method in a child class that exists in a parent class
Occurs AtCompile-timeRun-time
Access ModifiersCan have any modifierCannot 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!

1
Subscribe to my newsletter

Read articles from 𝔏𝔬𝔳𝔦𝔰π”₯ π”Šπ”¬π”Άπ”žπ”© directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

𝔏𝔬𝔳𝔦𝔰π”₯ π”Šπ”¬π”Άπ”žπ”©
𝔏𝔬𝔳𝔦𝔰π”₯ π”Šπ”¬π”Άπ”žπ”©