DEVFYI - Developer Resource - FYI

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

Java Interview Questions and Answers (part 1)


(Continued from previous question...)

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

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.

(Continued on next question...)

Other Interview Questions