java tutorial for beginners - OOPS most important topic Java Inheritance, in this video I have explained the Inheritance concept and also provided examples for the Single Inheritance Java Program.
In Java; Inheritance means accessing one class property into another class by using extends keyword. Inheritance represents a parent-child relationship. That means you will have Parent class and Child class
Types of inheritance in java
1. Single inheritance
2. Multilevel inheritance
3. Hierarchical inheritance
4. multiple inheritance
5. Hybrid inheritance
What is Single Inheritance in Java
When Class A extends Class B which has only 1 Parent class and 1 Child class then it is know as Single Inheritance. Here Class A is Super/Parent class and Class B is Derived/Child class of Class A.
Class B inherits methods and properties of Class A.
For more please watch this Video.
コメント