• Articles
  • Tutorials
  • Interview Questions

Super Keyword in Java - A Quick and Easy Guide

Tutorial Playlist

In the world of object-oriented programming, Java stands as a stalwart language, offering a plethora of features that make it both powerful and versatile. One such feature that plays a pivotal role in Java’s inheritance hierarchy is the “super” keyword. This unassuming keyword holds the key to unlocking the potential of class hierarchies and facilitates seamless communication between parent and child classes. In this blog, we will explore the nuances of the “super” keyword and delve into its various use cases.

Understanding Inheritance in Java

Before delving into the details of the “super” keyword, let’s quickly revisit the concept of inheritance in Java. Inheritance allows a class to inherit properties and behaviors (methods and fields) from another class, promoting code reusability and establishing a hierarchical relationship. The class that inherits from another class is known as the subclass or child class, and the class being inherited from is called the superclass or parent class.

Introducing the “super” Keyword in Java

The “super” keyword is used in Java to refer to the immediate parent class of a subclass. It provides a means to access and call the members (methods and fields) of the parent class from within the context of the subclass. This is particularly useful when both the parent and child classes have members with the same names.

Learn Java from scratch with this free Java Tutorial!

Key Use Cases of the “super” Keyword

  • Accessing Superclass Members: When a subclass overrides a method of its parent class, the “super” keyword can be used to invoke the overridden method in the parent class. This is especially handy when you want to extend the functionality of the parent method while still utilizing its original behavior.
class Parent {

    void display() {

        System.out.println("This is the parent class.");

    }

}



class Child extends Parent {

    @Override

    void display() {

        super.display(); // Calling the parent class method

        System.out.println("This is the child class.");

    }

}

Constructor Chaining: Constructors in Java can also make use of the “super” keyword to invoke the constructor of the parent class. This enables a subclass to reuse the initialization logic of its superclass, promoting clean and efficient

code.class Parent {

    Parent(int x) {

        // Initialization logic

    }

}




class Child extends Parent {

    Child(int x, int y) {

        super(x); // Calling the parent class constructor

        // Initialization logic for the child class

    }

}

Accessing Superclass Fields: If a subclass defines a field with the same name as a field in its parent class, the “super” keyword can be used to access the parent class’s field. This prevents ambiguity and ensures the correct field is accessed.class

Parent {

    int value = 10;

}

class Child extends Parent {

    int value = 20;

    void displayValues() {

        System.out.println("Parent value: " + super.value); // Accessing parent class field

        System.out.println("Child value: " + this.value);

    }

}

Learn the basics of OOPs in Java through this blog!

Exploring Advanced Applications of the “Super” Keyword in Java

While we’ve covered the fundamental use cases of the “super” keyword in Java, let’s dive deeper into some advanced scenarios where its usage can greatly enhance the flexibility and efficiency of your Java code.

1. Handling Method Overriding Challenges:

In complex class hierarchies, you might encounter scenarios where a subclass overrides a method but still wants to access the original behavior of the parent class. The “super” keyword proves invaluable in such cases, as it lets you selectively incorporate the parent’s behavior while extending or modifying it in the child class.

class Parent {

    void performAction() {

        System.out.println("Parent's action");

    }

}

class Child extends Parent {

    @Override

    void performAction() {

        super.performAction(); // Accessing parent's behavior

        System.out.println("Child's action");

    }

}

Learn how to use Methods in Java to write more modular and reusable code!

2. Polymorphism and Dynamic Method Dispatch:

The “super” keyword comes into play when dealing with polymorphism and dynamic method dispatch. In a scenario where a parent reference points to a child object, invoking a method using “super” ensures that the parent’s version of the method is called, even if the child class has overridden it.

Parent obj = new Child();

obj.performAction(); // Calls the parent's version of performAction()

Read on:- Final Keyword in Java!

3. Bridging Generations with Constructors:

Class hierarchies can span multiple generations of parent and child classes. Using the “super” keyword in constructors, you can establish a smooth chain of initialization, ensuring that constructors are called in an orderly manner up the hierarchy.

java

class Grandparent {

    Grandparent() {

        System.out.println("Grandparent's constructor");

    }

}

class Parent extends Grandparent {

    Parent() {

        super(); // Calling the constructor of the Grandparent class

        System.out.println("Parent's constructor");

    }

}

class Child extends Parent {

    Child() {

        super(); // Calling the constructor of the Parent class

        System.out.println("Child's constructor");

    }

}

4. Preventing Hidden Fields:

When a child class defines a field with the same name as a field in the parent class, the parent’s field might get hidden. Using “super” allows you to access the parent’s field, maintaining clarity and preventing unexpected behavior.

java

class Parent {

    int value = 10;

}

class Child extends Parent {

    int value = 20;

    void displayValues() {

        System.out.println("Parent value: " + super.value); // Accessing parent class field

        System.out.println("Child value: " + this.value);

    }

}

Check out the Java Strings blog to enhance your knowledge!

Conclusion

The “super” keyword stands as a vital tool in the Java programmer’s arsenal, offering advanced capabilities to manage the intricacies of class hierarchies and inheritance. From managing method overrides to establishing seamless constructor chains, and from handling polymorphism challenges to preventing hidden fields, the “super” keyword emerges as an elegant solution to a myriad of complex scenarios.

By mastering its application, developers can create robust, maintainable, and extensible codebases that truly leverage the power of object-oriented programming principles. As you continue your journey in Java programming, keep the “super” keyword in mind, and let it guide you toward crafting elegant solutions to intricate problems.

Course Schedule

Name Date Details
Python Course 27 Apr 2024(Sat-Sun) Weekend Batch
View Details
Python Course 04 May 2024(Sat-Sun) Weekend Batch
View Details
Python Course 11 May 2024(Sat-Sun) Weekend Batch
View Details

Full-Stack-ad.jpg