• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
October 12, 2022 |2.5K Views
Extends vs Implements in Java
  Share   Like
Description
Discussion

In java, inheritance is an important OOPs concept, by which one class can acquire all the features of its parent class. 

There are two keywords provided by Java to achieve inheritance 

1. Extends: This keyword is used to extend one class functionality to other, like extending parent class functionality to the child.
2. Implements: Using this keyword a class can implement an Interface.

So in this video, we are going to explain some major differences between Extends and Implements.

Extends vs Implements in Java: https://www.geeksforgeeks.org/extends-vs-implements-in-java/