InterviewSolution
Saved Bookmarks
| 1. |
What Is Constructor Chaining And How Is It Achieved In Java ? |
|
Answer» A child object constructor always first needs to construct its PARENT (which in turn calls its parent constructor.). In Java it is done VIA an implicit call to the no-args constructor as the first STATEMENT. A child object constructor always first needs to construct its parent (which in turn calls its parent constructor.). In Java it is done via an implicit call to the no-args constructor as the first statement. |
|