bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java super Keyword

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java super Keyword?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Order

Put the learning moves in the order that makes the concept easiest to apply.

The super keyword refers to superclass (parent) objects.
Definition and Usage
Java super Keyword

❮ Java Keywords

super

Definition and Usage

The super keyword refers to superclass (parent) objects.

It is used to call superclass methods, and to access the superclass constructor.

The most common use of the super keyword is to eliminate the confusion between superclasses and subclasses that have methods with the same name.

To understand the super keyword, you should have a basic understanding of Inheritance and Polymorphism .

Related Pages

Read more about inheritance (subclasses and superclasses) in our Java Inheritance Tutorial .

Read more about polymorphism in our Java Polymorphism Tutorial .

❮ Java Keywords

Previous

Java static Keyword

Next

Java switch Keyword