How can a subclass call a method or a constructor defined in a superclass?

Q

How can a subclass call a method or a constructor defined in a superclass?

✍: Guest

A

Use the following syntax: super.myMethod(); To call a constructor of the superclass, just write super(); in the first line of the subclass's constructor.

2012-07-05, 2265👍, 0💬