I'm not sure if I understand correctly whether I can access all kind of classes based on their modifier (even the private ones) from the super.() or just the public and protected ones.
If I extend a class it's a subclass of the first, so super
can bring me only the protected
and public
ones. Am I correct?