Polymorphism and Extensibility in Java

Polymorphism and Extensibility are two key principles of Object-Oriented Programming (OOP) in Java that allow for more flexible, scalable, and maintainable code. Let’s break down these concepts to understand how they work and why they’re essential for developers.


What is Polymorphism?

Polymorphism comes from the Greek words “poly” (many) and “morph” (forms). In Java, it means the ability of a method, class, or object to take on multiple forms. This principle allows the same operation to behave differently based on the object it is acting upon. There are two main types:

  1. Compile-Time (Static) Polymorphism:
    • This is achieved through method overloading, where multiple methods have the same name but different parameters.
    • Example:
      class Calculator {
      int add(int a, int b) {
      return a + b;
      }
      double add(double a, double b) {
      return a + b;
      }
      }
    • Here, the add method is overloaded. Depending on whether integers or doubles are passed, the appropriate method will be called.
  2. Runtime (Dynamic) Polymorphism:
    • This is implemented via method overriding, where a subclass provides its specific implementation of a method declared in a parent class.
    • Example:
      class Animal {
      void makeSound() {
      System.out.println("Animal makes a sound");
      }
      }
      class Dog extends Animal {
      void makeSound() {
      System.out.println(“Dog barks”);
      }
      }class Main {
      public static void main(String[] args) {
      Animal myDog = new Dog();
      myDog.makeSound(); // Outputs: Dog barks
      }
      }

    • Here, even though the object is of type Animal, the method of the Dog class is called because makeSound is overridden.

Benefits of Polymorphism

  • Code Reusability: Allows the same code to work with different types of objects.
  • Scalability: Makes it easier to add new functionality without changing existing code.
  • Maintenance: Reduces code duplication, simplifying code management and bug fixing.

What is Extensibility?

Extensibility is the design principle that allows a program to be expanded and improved without requiring significant changes to its core architecture. In Java, this often means adding new features, functions, or behaviors by creating new classes or modifying existing ones.

How Extensibility Works in Java

  1. Interfaces and Abstract Classes:
    • Java provides interfaces and abstract classes that allow developers to define methods that other classes can implement or extend.
    • Example:
      interface Payment {
      void processPayment();
      }
      class CreditCardPayment implements Payment {
      public void processPayment() {
      System.out.println(“Processing credit card payment”);
      }
      }class PayPalPayment implements Payment {
      public void processPayment() {
      System.out.println(“Processing PayPal payment”);
      }
      }

    • New payment types can be added by simply implementing the Payment interface, allowing the program to be extended without modifying the existing classes.
  2. Inheritance:
    • By using inheritance, classes can extend other classes, adding or modifying functionalities without altering the original class.
    • This promotes code reuse and helps in building systems that can grow over time.
  3. Open/Closed Principle:
    • Java promotes the Open/Closed Principle, where a class should be open for extension but closed for modification.
    • Developers can extend existing functionalities by creating new subclasses or interfaces, following the principle that code should be modifiable without altering the existing code base.

Example of Extensibility

Imagine you have an application that processes various types of files. Initially, it only handles .txt files, but now you want it to process .pdf and .csv files. Instead of rewriting the entire codebase, you can:

  1. Define an Interface:
    interface FileProcessor {
    void processFile();
    }
  2. Create Implementations:
    class TextFileProcessor implements FileProcessor {
    public void processFile() {
    System.out.println("Processing .txt file");
    }
    }
    class PdfFileProcessor implements FileProcessor {
    public void processFile() {
    System.out.println(“Processing .pdf file”);
    }
    }class CsvFileProcessor implements FileProcessor {
    public void processFile() {
    System.out.println(“Processing .csv file”);
    }
    }

Now, new file processors can be easily added by creating new classes that implement the FileProcessor interface.


Conclusion

Polymorphism and Extensibility make Java a robust and flexible programming language. Polymorphism allows methods to act differently depending on the objects they work with, while extensibility ensures that programs can grow and adapt over time without significant changes to the core structure. Together, these principles enable developers to write cleaner, more maintainable, and scalable code.

public class Interface {

 

// Where we use a type, we use an interface; where we create an instance,

// we use a class that implements it.

// In other words, when we declare a variable, we use an interface. It doesn’t matter which class

// we use to create an object; they will all work the same through this variable

// because all classes implement this interface. That is, if we create a list, it doesn’t matter whether it’s

// a LinkedList or ArrayList; they will all work through the same methods.

// ArrayList provides instant access, but it has expensive expansion.

// LinkedList has free expansion, but it takes a long time to traverse.

 

// An object always has a super-super-parent.

// Anything can be placed in the box of the object. List is an interface

// that inherits from Collection, and Collection has many classes that inherit from it.

// Iterable is a class that can be iterated.

 

// ArrayList is a complete analog of an array.

// It is needed when the array needs to be expanded as much as needed.

// List is an interface.

// Array is a class that implements the interface.

// For an array, it’s .length

// For a list, it’s .size

// Map is an interface.

// If you take all the keys from the map, you get a set; it is a collection of unique data.

// Set is a collection of unique values and allows the implementation of a mathematical set of data

// where all values are unique. That is, when a bunch of values is given as input, and we need to get an array of unique values and sort it.

// Collection is also an Interface.

// Iterator – to repeat/ It is an interface that can iterate. It has several methods.

// Interface

//———–

// The interface in Java is a blueprint of a class.

// The interface contains final and static variables.

// The interface contains abstract methods.

// An abstract method is a method that contains a definition but not a body.

// The interface supports the functionality of multiple inheritance.

// We can define an interface with the interface keyword.

// The methods in the interface are public.

Scroll to Top