Hi,
From the <<
SCJP 5 Study Guide>> book Page 162, Qn 11.
In case you don't have the book, here is the code:
This code compiles fine.
I am really confused by the access to 'y' in Minor's constructor( the line
super(y); ), how do you explain it?
My understanding is, y is static in Uber class and is not inherited in class Minor 'coz it is static. but if I change it to
super(Minor.y);, it still compiles.
anyone please enlighten me? Thanks.