Saved Bookmarks
| 1. |
What is different between this() super() and this super |
Answer» in java. super() as well as this() both are used to make constructor CALLS. super() is used to call Base class's constructor(i.e, PARENT's class) while this() is used to call CURRENT class's constructor. super() is USE to call Base class's(Parent class's) constructor. |
|