What if you could build on someone else's work without copying it all over again?
Why Super keyword in Java? - Purpose & Use Cases
Start learning this pattern below
Jump into concepts and practice - no test required
Imagine you have a family recipe book, and your grandma's recipe is the base. Now, you want to add your own twist to the recipe but still keep the original steps. Without a clear way to refer back to grandma's recipe, you might accidentally change or lose important parts.
Manually rewriting or copying the original recipe every time you want to add a twist is slow and confusing. You might forget some steps or mix up ingredients, leading to mistakes and frustration.
The super keyword acts like a direct link to grandma's original recipe. It lets you use or build upon the original instructions easily without rewriting them, keeping everything clear and organized.
class Parent { void show() { System.out.println("Parent method"); } } class Child { void show() { System.out.println("Child method"); } } // To call Parent's show, you must create a Parent object separately.
class Parent { void show() { System.out.println("Parent method"); } } class Child extends Parent { void show() { super.show(); // calls Parent's show System.out.println("Child method"); } }
It enables clear and easy reuse of parent class features while adding or changing behavior in child classes.
Think of a car model that inherits features from a basic car but adds new ones. Using super, the new model can keep the basic car's engine setup and just add a sunroof or better tires.
Super keyword helps access parent class methods or variables.
It avoids rewriting code and reduces errors.
Makes extending and customizing classes simple and clear.
Practice
super keyword do in Java?Solution
Step 1: Understand the role of
Thesupersuperkeyword is used to refer to the parent class's members (methods or variables) from a child class.Step 2: Compare options with definition
Only It accesses methods and variables from the parent class. correctly describes this behavior. Other options describe unrelated actions.Final Answer:
It accesses methods and variables from the parent class. -> Option CQuick Check:
super accesses parent members = A [OK]
- Thinking super creates new objects
- Confusing super with this keyword
- Assuming super ends program
Solution
Step 1: Recall syntax for parent constructor call
In Java,super()is used inside a child constructor to call the parent class constructor.Step 2: Evaluate options
Only super(); uses the correct keywordsuper(). Others are invalid or refer to different concepts.Final Answer:
super(); -> Option AQuick Check:
Parent constructor call = super() [OK]
- Using this() instead of super()
- Trying to call parent() which is invalid
- Confusing base() with super()
class Parent {
int x = 10;
}
class Child extends Parent {
int x = 20;
void printX() {
System.out.println(super.x);
}
}
public class Test {
public static void main(String[] args) {
Child c = new Child();
c.printX();
}
}Solution
Step 1: Understand variable hiding and super usage
The child class has its ownx = 20, butsuper.xaccesses the parent'sxwhich is 10.Step 2: Trace the print statement
The methodprintX()printssuper.x, so it prints 10.Final Answer:
10 -> Option DQuick Check:
super.x accesses parent variable = 10 [OK]
- Printing child variable instead of parent
- Confusing super.x with this.x
- Expecting compilation error
class Parent {
void show() {
System.out.println("Parent show");
}
}
class Child extends Parent {
void show() {
super.show();
System.out.println("Child show");
}
void display() {
super();
}
}Solution
Step 1: Check usage of super in methods
Callingsuper.show()inside overridden method is valid to call parent method.Step 2: Analyze
super()call in display()super()can only be used to call parent constructor inside child constructor, not as a method call elsewhere.Final Answer:
super() cannot be called like a method in display() -> Option BQuick Check:
super() only in constructor = D [OK]
- Using super() outside constructor
- Thinking super.show() is invalid
- Believing overriding is not allowed
class Animal {
String name;
Animal(String name) {
this.name = name;
}
void sound() {
System.out.println("Animal sound");
}
}
class Dog extends Animal {
Dog() {
super("Dog");
}
void sound() {
super.sound();
System.out.println("Bark");
}
}
public class Test {
public static void main(String[] args) {
Dog d = new Dog();
d.sound();
System.out.println(d.name);
}
}What is the output when running
Test.main()?Solution
Step 1: Understand constructor chaining
TheDogconstructor callssuper("Dog"), settingnameto "Dog" inAnimal.Step 2: Trace the
sound()method callDog.sound()callssuper.sound()which prints "Animal sound", then prints "Bark".Step 3: Print the
Printingnamefieldd.nameoutputs "Dog".Final Answer:
Animal sound Bark Dog -> Option AQuick Check:
super() sets name, super.sound() prints parent sound = A [OK]
- Expecting Dog before Animal sound
- Confusing order of prints
- Thinking super() causes error
