posted 18 years ago
Hello,
The simple & straight answer is, the instance variables are created and assigned default values until the super class constructor is executed, then the values are assigned.
Output:
--------------
Inside this Parent Hello
Inside Method Child null
Inside this Child Hello
Inside Method Child Hello
As you see, the Parent method() is not called....