DEV Community

Cover image for Understanding Java Constructors and Inheritance Through Simple Real-World Analogies
Ebenezer
Ebenezer

Posted on

Understanding Java Constructors and Inheritance Through Simple Real-World Analogies

Hey Folks! 👋

Good Day...

This blog is a summary of the concepts covered during the last two classes at my institute.

One of the reasons I enjoy writing these blogs is that they serve as my personal knowledge journal. Whenever I need a quick refresher on a concept, I can simply revisit my blog instead of searching through notes or recordings. It helps me reinforce what I've learned while also documenting my learning journey.

Over the past two days, we explored several important Java concepts, including constructors, the this keyword, inheritance, constructor chaining.

In this blog, I'll share what I learned in the simplest way possible, using real-world analogies, practical examples, and the thought process that helped me understand these concepts more clearly. If you're a beginner learning Java, I hope this walkthrough makes these topics a little easier to grasp and a lot more memorable.

What Is a Constructor?

According to Oracle Java Documentation:

A constructor is a special method that is used to initialize objects. The constructor is called when an object of a class is created.

In simple terms:

Imagine you order a new smartphone.

Before the phone reaches your hands, the factory installs the operating system, configures the hardware, and prepares everything for use.

A constructor does exactly the same thing for an object.

Before you use an object, Java uses the constructor to prepare it.


My First Confusing Example

I wrote the following code:

public class SuperMarket {

    String name = "python";
    int price;

    public SuperMarket(String name, int price) {

        System.out.println("Are you constructor?");

        name = name;
        price = price;
    }

    public static void main(String[] args) {

        SuperMarket product1 = new SuperMarket("abc", 20);

        System.out.println(product1.name);
    }
}
Enter fullscreen mode Exit fullscreen mode

I expected the output to be:

abc
Enter fullscreen mode Exit fullscreen mode

But Java printed:

python
Enter fullscreen mode Exit fullscreen mode

And honestly...

I was completely confused.

After all, I passed "abc" into the constructor.

Why was Java ignoring it?


The Hotel Room Analogy

Imagine a hotel room already contains a welcome card:

Guest Name : python
Enter fullscreen mode Exit fullscreen mode

This is equivalent to:

String name = "python";
Enter fullscreen mode Exit fullscreen mode

Now a new guest arrives and says:

new SuperMarket("abc", 20);
Enter fullscreen mode Exit fullscreen mode

Inside the constructor, Java receives:

name = "abc"
price = 20
Enter fullscreen mode Exit fullscreen mode

But then I wrote:

name = name;
Enter fullscreen mode Exit fullscreen mode

Java sees two variables named name.

Variable 1

Belongs to the object:

String name = "python";
Enter fullscreen mode Exit fullscreen mode

Variable 2

Belongs to the constructor parameter:

public SuperMarket(String name, int price)
Enter fullscreen mode Exit fullscreen mode

Java always looks at the nearest variable first.

Therefore:

name = name;
Enter fullscreen mode Exit fullscreen mode

actually means:

parameterName = parameterName;
Enter fullscreen mode Exit fullscreen mode

Nothing changes.

The object's value remains:

name = "python";
Enter fullscreen mode Exit fullscreen mode

That's why Java printed:

python
Enter fullscreen mode Exit fullscreen mode

The Solution: this

The correct code is:

public SuperMarket(String name, int price) {

    this.name = name;
    this.price = price;
}
Enter fullscreen mode Exit fullscreen mode

Here:

this.name
Enter fullscreen mode Exit fullscreen mode

means:

The name variable belonging to the current object.

Now Java understands:

this.name = name;
Enter fullscreen mode Exit fullscreen mode

as:

objectName = parameterName;
Enter fullscreen mode Exit fullscreen mode

or:

"python" = "abc"
Enter fullscreen mode Exit fullscreen mode

After execution:

product1.name
Enter fullscreen mode Exit fullscreen mode

contains:

abc
Enter fullscreen mode Exit fullscreen mode

Can We Avoid Using this?

Yes.

We can rename the parameters.

public SuperMarket(String productName, int productPrice) {

    name = productName;
    price = productPrice;
}
Enter fullscreen mode Exit fullscreen mode

Now there is no confusion.

However, in professional Java projects, most developers prefer:

this.name = name;
Enter fullscreen mode Exit fullscreen mode

because it is cleaner and follows standard coding conventions.


Enter Inheritance

After understanding constructors, we moved to inheritance.

I created two classes.

Parent Class

public class Mobile {

    public Mobile() {
        System.out.println("Mobile Parent");
    }

    public void call() {
        System.out.println("Calling");
    }

    public void msg() {
        System.out.println("Msg");
    }
}
Enter fullscreen mode Exit fullscreen mode

Child Class

public class Samsung extends Mobile {

    public Samsung() {
        System.out.println("Hey");
    }

    public void touch() {
        System.out.println("Touch");
    }
}
Enter fullscreen mode Exit fullscreen mode

Then I created an object:

Samsung samsung = new Samsung();
Enter fullscreen mode Exit fullscreen mode

Output:

Mobile Parent
Hey
Enter fullscreen mode Exit fullscreen mode

Now another question appeared.

Why is the Mobile constructor running when I only created a Samsung object?


Understanding super()

According to Java documentation:

The super keyword refers to the immediate parent class object.

When used as:

super();
Enter fullscreen mode Exit fullscreen mode

it calls the constructor of the parent class.

Think of it like this:

A child cannot exist before the parent exists.

Similarly, Java cannot fully create a child object until the parent portion of the object is initialized.


The House Construction Analogy

Imagine building a two-floor house.

Before constructing the first floor, you must build the ground floor.

Ground Floor
      ↓
First Floor
Enter fullscreen mode Exit fullscreen mode

Inheritance works exactly the same way.

Mobile
    ↓
Samsung
Enter fullscreen mode Exit fullscreen mode

Before Java builds the Samsung portion, it first builds the Mobile portion.

That's why Java automatically executes:

super();
Enter fullscreen mode Exit fullscreen mode

before running the Samsung constructor.


The Hidden super()

The interesting part is:

Even if we don't write:

super();
Enter fullscreen mode Exit fullscreen mode

Java automatically inserts it.

This constructor:

public Samsung() {
    System.out.println("Hey");
}
Enter fullscreen mode Exit fullscreen mode

is internally treated as:

public Samsung() {

    super();

    System.out.println("Hey");
}
Enter fullscreen mode Exit fullscreen mode

Execution Flow:

Mobile Constructor
        ↓
Samsung Constructor
Enter fullscreen mode Exit fullscreen mode

Output:

Mobile Parent
Hey
Enter fullscreen mode Exit fullscreen mode

Why Did "Mobile Parent" Print Twice?

My code later looked like this:

public static void main(String[] args) {

    Mobile mobile = new Mobile();

    Samsung samsung = new Samsung();

    samsung.touch();
    samsung.msg();
}
Enter fullscreen mode Exit fullscreen mode

Output:

Mobile Parent
Mobile Parent
Hey
Touch
Msg
Enter fullscreen mode Exit fullscreen mode

Initially I thought Java was calling the parent constructor twice for Samsung.

But that wasn't true.

Let's analyze it.


Object 1

Mobile mobile = new Mobile();
Enter fullscreen mode Exit fullscreen mode

Output:

Mobile Parent
Enter fullscreen mode Exit fullscreen mode

Object 2

Samsung samsung = new Samsung();
Enter fullscreen mode Exit fullscreen mode

Output:

Mobile Parent
Hey
Enter fullscreen mode Exit fullscreen mode

Total Output

Mobile Parent
Mobile Parent
Hey
Touch
Msg
Enter fullscreen mode Exit fullscreen mode

Two objects were created.

Therefore the Mobile constructor executed twice.


Why Wasn't "Hey" Printed Twice?

This question bothered me for a while.

The answer is simple.

I created:

new Mobile();
Enter fullscreen mode Exit fullscreen mode

once

and

new Samsung();
Enter fullscreen mode Exit fullscreen mode

once

Only Samsung objects can execute:

Samsung()
Enter fullscreen mode Exit fullscreen mode

constructor.

Since only one Samsung object was created:

Hey
Enter fullscreen mode Exit fullscreen mode

appeared only once.


My Biggest Takeaway

Before this exercise, I used to think constructors were just syntax.

Now I see them differently.

Constructors are responsible for:

  • Initializing objects
  • Assigning values
  • Preparing inherited classes
  • Executing parent-child constructor chains
  • Ensuring objects are ready before use

References

While exploring constructors, inheritance, and super(), I referred to the following resources for deeper understanding:

  1. Oracle Java Tutorials – Classes and Objects
    https://docs.oracle.com/javase/tutorial/java/javaOO/

  2. Oracle Java Tutorials – Constructors
    https://docs.oracle.com/javase/tutorial/java/javaOO/constructors.html

  3. Oracle Java Tutorials – Inheritance
    https://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html

  4. Oracle Java Tutorials – Using the super Keyword
    https://docs.oracle.com/javase/tutorial/java/IandI/super.html

  5. Java Language Specification (JLS)
    https://docs.oracle.com/javase/specs/

Top comments (0)