Multiple Inheritence in Java /How to inherit a class from another in Java| Programmer Hub
Multiple Inheritence in Java
Inheritance allows to reuse classes by deriving anew class from an existing one.The existing class is called the parent class, or
super class, or base class.
The derived class is called the child class or
subclass or derived class. The child inherits characteristics of the parent(i.e the child class inherits the methods and data defined for the parent class).
Comments
Post a Comment