Sometimes, a subclass needs to call a superclass edition of a function.
For example, the subclass override
edition of the function might want to
call the superclass edition of the function, then modify the result.
To do that, prefix the function call with super.
to indicate that you want
the superclass edition of the function.
You can learn more about this in:
Tags: