Let's say I have a base class called Vehicle
, and another class called Car
that extends it. Finally I have a class Luxury
that extends Car
.
I know I can use the keyword super
to invoke a base-class method. How do I invoke a method of the Vehicle
class from Luxury
?