| |
|
Types of Inheritance OOPS Question Posted on 03 Feb 2017 Home >> OOPS >> CLASS >> Types of Inheritance OOPS |
Below are the 5 diferent types of inheritance used in oops.
(1) Single Inheritance
(2) Multiple Inheritance
(3) Hierarchical Inheritance
(4) Multilevel Inheritance
(5) Hybrid Inheritance or Virtual Inheritance
Now Example of Inheritance are given below
(1)Single Inheritance :- In this one derived class inherits from only one base class
(2)Multiple Inheritance:-In this we have single derived class may inherit from two or more than two base classes
(3)Hierarchical Inheritance:- In this we have multiple derived classes inherits from a single base class
(4)Multilevel Inheritance:-In this the derived class inherits from a class, which in turn inherits from some other class
(5)Hybrid Inheritance or Hybrid Inheritance:-Hybrid Inheritance is combination of Hierarchical and Mutilevel Inheritance.
| |
|
|
|
|