Steve Luke wrote:There is only one object being created, the instance of Child. But the Child IS-A Parent since it extends Parent, so the single Object that is being created must be a fully functional (and initialized) Parent as well as a fully functional (and initialized) Child. So the first thing that happens is the single Object is created as a Parent first, then 'extended' to include all the initializations for the Child.
Thank You very much Steve
