Home > Java > javaTutorial > body text

Do Java Subclasses Always Need to Explicitly Call the Superclass Constructor?

Mary-Kate Olsen
Release: 2024-10-31 02:50:02
Original
940 people have browsed it

Do Java Subclasses Always Need to Explicitly Call the Superclass Constructor?

Must You Explicitly Call the Superclass Constructor in Java Subclasses?

When defining a subclass, it's common practice to see constructors that explicitly call the superclass constructor using super(). However, one may question if this is necessary.

Is super() Automatically Added by the Compiler?

Yes, if the subclass constructor omits a call to the superclass constructor, the compiler will automatically call the accessible no-argument constructor (no-args constructor) in the superclass. This default behavior is known as constructor chaining.

Types of Constructors

  • No-args constructor: A constructor with no parameters.
  • Accessible no-args constructor: A no-args constructor in the superclass that is visible to the subclass (public, protected, or package-private).
  • Default constructor: The public no-args constructor added by the compiler when there is no explicit constructor in the class.

When is super() Required?

Using super() explicitly is only required if:

  • The superclass does not have an accessible no-args constructor.
  • The subclass constructor includes parameters, in which case it must explicitly call a constructor in the superclass that accepts those parameters.

Example 1:

<code class="java">public class Base {}
public class Derived extends Base {}</code>
Copy after login

No explicit call to super() is needed because Base has a default constructor.

Example 2:

<code class="java">public class Base {
    public Base(int i) {}
}
public class Derived extends Base {
    public Derived(int i) {
        super(i); // Explicitly call the Base(int) constructor
    }
}</code>
Copy after login

In this case, super(i) is required because the superclass does not have a no-args constructor, and the subclass constructor needs to provide an initial value for its i parameter.

By understanding these concepts, you can avoid unnecessary super() calls and ensure proper constructor chaining in your subclasses.

The above is the detailed content of Do Java Subclasses Always Need to Explicitly Call the Superclass Constructor?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template