Inheritance कितने प्रकार का होता है

Inheritance कितने प्रकार का होता है

Inheritance कितने प्रकार का होता है
Ganesh
Saturday 4 March 2017
Types of inheritance- 
inheritance are following five types.

(1)
Single inheritance- यहाँ एक base class तथा एक derived class होती है।
(class B : Public A)

(2) Multiple inheritance- यहाँ पर दो या दो से ज्यादा base class तथा एक derived class होती है।
class C : Public A, Public B

(3) Multilevel inheritance- यहाँ पर एक base class एक intermediate base class तथा एक derived class होती है।
class B : Public A
class C : Public B

(4) Hierachical inheritance- इसमें एक से ज्यादा derived class एक single base class से inherit होती है।

(5) Hybrid inheritance- इसमें किसी भी दो या दो से अधिक inheritance का उपयोग किया जाता है।