0% found this document useful (0 votes)
10 views

What Are Different Types of Inheritances - LeetCode Discuss

Uploaded by

Kushidhar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

What Are Different Types of Inheritances - LeetCode Discuss

Uploaded by

Kushidhar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Explore Problems Contest Discuss Interview Store

Back What are different types of Inheritances?


Aakashpal13 4 July 8, 2017 6:31 PM 2.2K VIEWS
4 There are five types inheritances--
Single Inheritance
Hierarchical Inheritance
Multi-Level Inheritance
Hybrid Inheritance
Multiple Inheritance
Let us discuss them one by one.
Single inheritance
Single inheritance is the simplest form of inheritance. When a class extends another one class only
The below flow diagram shows that class B extends only one class which is A. Here A is a parent cla
of A.

When a single derived class is created from a single base class then the inheritance is called as sing
Hierarchical Inheritance
When more than one derived class are created from a single base class, then that inheritance is call
such kind of inheritance one class is inherited by many sub classes. In the example, class B, C and D
parent class (or base class) of B, C and D.

Multi-Level Inheritance
When a derived class is created from another derived class, then that inheritance is called as multi l
inheritance refers to a mechanism in object oriented technology where one can inherit from a derive
l th b l f th l A i fi C i b l hild l f B d

You might also like