Aug 17, 2024
Employee
class and Manager
class (extends Employee
).name
, salary
.setName
, setSalary
, getName
, getSalary
, doubleBonus
.super
to call the parent constructor.Manager
vs. Employee
.super
: To call the overridden method of the parent class if private variables are not accessible.Employee e
).e
is a Manager
).bonus
on e
will invoke the Manager
's bonus calculation if e
is a Manager
.sort
method in Java's arrays class for different types (int, double).Employee e
can be cast to Manager
).
(Manager)e
.