Thursday, March 12, 2009

What is constructor chaining and how is it achieved in Java (CoreJava)

Question :What is constructor chaining and how is it achieved in Java ? (CoreJava)
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.

No comments: