What is Method Overriding in Java?

What is Method Overriding in Java? Explained with Code Examples

Method overriding is a feature in Java that allows a subclass to provide a specific implementation for a method that is already defined in its superclass. This concept is an essential part of Object-Oriented Programming (OOP) and is primarily used to achieve polymorphism, where the method call can resolve to different implementations based on the object type (not the reference type).

When a subclass has a method with the same name, same return type, and same parameter list as a method in the superclass, it overrides the superclass method. This enables dynamic method dispatch, meaning that the method that gets called is determined at runtime based on the actual object type, not the reference type.

Why is Method Overriding Important?

The main reason to use method overriding is to modify or extend the behavior of a method inherited from a superclass. This helps in achieving runtime polymorphism, where you can write more flexible and reusable code by leveraging the same method signature to perform different actions across different classes.

Basic Syntax of Method Overriding

The syntax for overriding a method is straightforward. Here’s how it’s done:

        class Superclass {
            void display() {
                System.out.println("Superclass display()");
            }
        }

        class Subclass extends Superclass {
            @Override
            void display() {
                System.out.println("Subclass display()");
            }
        }
    

In this example, the Subclass overrides the display() method from the Superclass. The @Override annotation is optional but recommended as it helps avoid errors by ensuring that the method is correctly overriding a superclass method.

Key Points to Remember in Method Overriding

  • The method signature (name, return type, and parameters) in the subclass must match the method signature in the superclass.
  • Method overriding cannot be applied to static methods, as static methods are resolved at compile-time, not runtime.
  • Overridden methods can be invoked using both the subclass reference or the superclass reference (if pointing to the subclass object).
  • In overriding, the access modifier in the subclass should not be more restrictive than the superclass’s access modifier.
  • Final, static, and private methods cannot be overridden.

Example: Demonstrating Method Overriding

Let’s consider an example that demonstrates method overriding in action:

        class Animal {
            void sound() {
                System.out.println("Animal makes a sound");
            }
        }

        class Dog extends Animal {
            @Override
            void sound() {
                System.out.println("Dog barks");
            }
        }

        class Cat extends Animal {
            @Override
            void sound() {
                System.out.println("Cat meows");
            }
        }

        public class Main {
            public static void main(String[] args) {
                Animal animal1 = new Dog();  // Dog object
                Animal animal2 = new Cat();  // Cat object
                animal1.sound();  // Output: Dog barks
                animal2.sound();  // Output: Cat meows
            }
        }
    

In this example, both Dog and Cat classes override the sound() method of the Animal class. The method call animal1.sound() and animal2.sound() resolves to the respective class implementations of the method, demonstrating runtime polymorphism.

Rules for Method Overriding

  • Method Signature: The method signature must be identical in both the superclass and subclass.
  • Return Type: The return type must be the same or a subclass (covariant return type) of the return type in the superclass method.
  • Access Modifier: The access modifier in the subclass should be the same or more permissive than that of the superclass.
  • Exception Handling: The subclass method can throw fewer or the same exceptions as the superclass method, but not more.

Advantages of Method Overriding

  • It enables dynamic method dispatch, allowing for runtime polymorphism.
  • It promotes code reusability and enhances extensibility.
  • It allows for more flexible and maintainable code by providing specialized behavior for subclasses while still using common method names.

Real-World Example of Method Overriding

Consider a banking system with various account types. Different types of accounts (e.g., savings and checking) may have different rules for calculating interest. You can use method overriding to provide different implementations for calculating interest in each account type, while keeping the same method signature.

        class Account {
            double calculateInterest() {
                return 0.0;
            }
        }

        class SavingsAccount extends Account {
            @Override
            double calculateInterest() {
                return 5.0; // 5% interest for savings account
            }
        }

        class CheckingAccount extends Account {
            @Override
            double calculateInterest() {
                return 2.0; // 2% interest for checking account
            }
        }

        public class Bank {
            public static void main(String[] args) {
                Account account1 = new SavingsAccount();
                Account account2 = new CheckingAccount();
                System.out.println("Savings Account Interest: " + account1.calculateInterest());
                System.out.println("Checking Account Interest: " + account2.calculateInterest());
            }
        }
    

Here, the calculateInterest() method is overridden in both SavingsAccount and CheckingAccount classes to provide specific interest calculations. This demonstrates how method overriding helps in creating specialized behavior for different classes.

Method Overriding vs. Method Overloading

While method overriding and method overloading are both essential concepts in Java, they are different:

  • Method Overloading: Refers to defining multiple methods with the same name but different parameter lists within the same class. It is resolved at compile-time.
  • Method Overriding: Refers to providing a specific implementation for a method in a subclass that is already defined in its superclass. It is resolved at runtime.

Conclusion

Method overriding is a powerful feature in Java that facilitates polymorphism and dynamic method dispatch. It allows subclasses to change or extend the behavior of inherited methods, leading to more flexible and maintainable code. By understanding and using method overriding effectively, you can take full advantage of object-oriented programming principles.

Please follow and like us:

Leave a Comment