Java Tutorial : Multilevel Inheritance
In multilevel inheritance, a subclass inherits the properties of another subclass. For example, Class A is a superclass for the Class B; and Class B is a superclass for the subclass, Class C. You can include any number of levels in multilevel inheritance. The following syntax shows how to implement multilevel inheritance: class A { [...]



