What is constructor chaining and how is it achieved in Java?
Question
What is constructor chaining and how is it achieved in Java?
Answer
A child object constructor always first needs to construct its parent. In Java it is done via an implicit call to the no-args constructor as the first statement.