If a subclass can\'t inherit private members from a super-class, but it inherits public methods from the super-class that have access to the private members that are not inheri
An instance of the subclass contains all members of its superclasses, however private members may not be accessed from within the subclass.