Program of Multiple Inheritance in Java

Inheritance means child class can acquire all the properties and attributes from base class. In java multiple inheritance we inherit the new derived classes form one base class. Multiple inheritance in java example contains one base class and we extend base class to derive new child classes from it. After java multiple inheritance the derived classes can acquire the all the properties and attributes.

The following example of multiple inheritance in java shows how child classes are derived from base class using java multiple inheritance.

Simple code for java multiple inheritance

Output of multiple inheritance in java example

Program of Multiple Inheritance in Java