Lesson 3

Polymorphism in Java for Backward Compatibility

Introduction

Hello, learner! In today's exciting chapter, we will unravel Polymorphism, a prominent feature of Object-Oriented Programming (OOP). Specifically, we will study its role in maintaining backward compatibility while introducing new features. Think of it as a software update that introduces new functions without breaking the older functionality — ingenious, isn't it?

Understanding Polymorphism

Polymorphism, a principle that derives from the Greek words "poly" (many) and "morphism" (forms), enables a variable or method to assume multiple roles — to embody various behaviors or functions determined by its data type or class.

Consider a class Bird with a method canFly(). If we create subclasses like Sparrow and Penguin, we can override the canFly() method for certain subclasses. This demonstrates polymorphism in action.

Java
1class Bird { // Superclass 2 String canFly() { 3 return "Unknown"; 4 } 5} 6 7class Sparrow extends Bird { // Subclass 8 @Override 9 String canFly() { 10 return "Yes, I can fly!"; 11 } 12} 13 14class Penguin extends Bird { // Subclass 15 @Override 16 String canFly() { 17 return "No, I prefer swimming."; 18 } 19} 20 21public class Main { 22 public static void main(String[] args) { 23 Sparrow sparrow = new Sparrow(); 24 Penguin penguin = new Penguin(); 25 System.out.println("Sparrow says: " + sparrow.canFly()); // Output: "Yes, I can fly!" 26 System.out.println("Penguin says: " + penguin.canFly()); // Output: "No, I prefer swimming." 27 } 28}
Polymorphism for Backward Compatibility

When adding new features, which introduce new behaviors to some components, polymorphism ensures that the existing parts function as before, thereby retaining backward compatibility. In complex cases, we maintain an older version of the method in the superclass for legacy support while offering newer functionalities in subclasses.

Take, for instance, a MathOperations class with a multiply() method that accepts two parameters. To support the multiplication of three numbers, we design a subclass, ExtendedMathOperations, and include a new overloaded multiply() method in it, ensuring backward compatibility.

Java
1class MathOperations { // Superclass 2 int multiply(int a, int b) { 3 return a * b; 4 } 5} 6 7class ExtendedMathOperations extends MathOperations { // Subclass 8 @Override 9 int multiply(int a, int b) { 10 return a * b; 11 } 12 13 int multiply(int a, int b, int c) { 14 return a * b * c; 15 } 16} 17 18public class Main { 19 public static void main(String[] args) { 20 MathOperations mathOps = new MathOperations(); 21 ExtendedMathOperations extendedMathOps = new ExtendedMathOperations(); 22 System.out.println(mathOps.multiply(2, 3)); // Output: 6 23 System.out.println(extendedMathOps.multiply(2, 3)); // Output: 6, keeping backward compatibility 24 System.out.println(extendedMathOps.multiply(2, 3, 4)); // Output: 24 25 } 26}
Real-Life Examples

Consider a Document class that prints a text document and a subclass PhotoDocument, which supports color prints, as an example. This design allows the implementation without changing Document.printDoc().

Java
1class Document { 2 String text; 3 4 Document(String text) { 5 this.text = text; 6 } 7 8 void printDoc() { 9 System.out.println("Printing document: " + this.text); 10 } 11} 12 13class PhotoDocument extends Document { 14 15 PhotoDocument(String text) { 16 super(text); 17 } 18 19 void printDoc(boolean isColourPrint) { 20 String printType = isColourPrint ? "Colour " : ""; 21 System.out.println(printType + "Printing document: " + this.text); 22 } 23 24 // Overloading to match the superclass method 25 @Override 26 void printDoc() { 27 super.printDoc(); 28 } 29} 30 31public class Main { 32 public static void main(String[] args) { 33 Document doc = new Document("Hello"); 34 doc.printDoc(); // Output: Printing document: Hello 35 36 PhotoDocument photoDoc = new PhotoDocument("Beautiful Sunset!"); 37 photoDoc.printDoc(); // Output: Printing document: Beautiful Sunset! 38 photoDoc.printDoc(true); // Output: Colour Printing document: Beautiful Sunset! 39 } 40}
Pros and Cons of Using Polymorphism for Backward Compatibility

As with any programming approach, using polymorphism to maintain backward compatibility comes with its own set of advantages and disadvantages. Here, we will explore two key pros and two cons to give you a more balanced understanding.

Pros

  1. Flexibility in Feature Expansion: Polymorphism allows for easy extension and addition of new features without altering the existing system's functionality. This means developers can introduce new subclasses that provide enhanced features while the original classes remain unaffected and continue to support legacy systems.

  2. Seamless Integration with Existing Codebase: Since polymorphism enables new features to coexist with older ones through subclassing, integrating these features into the existing codebase does not disrupt the functionality of legacy systems. This approach minimizes the risk of breaking changes and ensures a smoother transition for systems adopting new features.

Cons

  1. Increased Complexity: While polymorphism promotes flexibility and integration, it can also lead to a more complex codebase. Developers must understand the entire hierarchy and relationships between classes to effectively implement and maintain the system. This complexity might slow down development and increase the likelihood of errors.

  2. Potential Overhead in Performance: The use of polymorphism, especially when it involves a deep class hierarchy or extensive method overriding, might introduce runtime overhead. This is because the program needs to determine the correct method to execute at runtime dynamically, which could impact performance, particularly in systems where efficiency is critical.

Understanding these pros and cons is essential for making informed decisions when considering polymorphism as a strategy for adding new features while keeping backward compatibility.

Lesson Summary

You have aced understanding of Polymorphism and its role in maintaining backward compatibility. Now, gear up for insightful exercises to reinforce today's learning. Regular application is the key to mastering these concepts. Are you ready to put your skills to the test? Let's go!

Enjoy this lesson? Now it's time to practice with Cosmo!

Practice is how you turn knowledge into actual skills.