InterviewSolution
Saved Bookmarks
| 1. |
How Are This () And Super () Used With Constructors? |
|
Answer» This() is used to INVOKE a CONSTRUCTOR of the same class. SUPER() is used to invoke a SUPERCLASS constructor. This() is used to invoke a constructor of the same class. super() is used to invoke a superclass constructor. |
|