from a subclass, if you do `field.x` and `field` i...
# announcements
d
from a subclass, if you do
field.x
and
field
is a protected field of the java parent class, is that access still via
parent.getField()
? or is it directly accessing the protected field? if not, how can one access the field directly from the subclass?