previous
|
start
|
next
Invoking Superclass Methods
Use
super
keyword
public double getSalary()
{
return
super.
getSalary() + bonus;
}
super
is
not
a reference
super
turns off polymorphic call mechanism
previous
|
start
|
next