G.4.4. CommissionEmployee–BasePlusCommissionEmployee Inheritance Hierarchy Using protected Instance Variables
To enable class BasePlusCommissionEmployee
to directly access superclass instance variables firstName
, lastName
, socialSecurityNumber
, grossSales
and commissionRate
, we can declare those members as protected
in the superclass. As we discussed in Section G.3, a superclass’s protected
members are accessible by all subclasses of that superclass. In the new CommissionEmployee
class, we modified only lines 6–10 of Fig. G.4 to declare the instance variables with the protected
access modifier as follows:
protected String firstName;protected String lastName;protected String socialSecurityNumber;protected double ...
Get Android™ How to Program, Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.