This keyword not only has the best name , but it comes from the concept of inheritance .
by reducing the amount of code that we need to write , inheriting allow us to control multiple classes and their content with one parent class.
The class that is being inherited from it’s called the super class , and the class that inherits is call the sub class.
all of the code will be available at the bottom of the page , where there will be a link to my program from my GitHub !!
The super keyword it’s a reference to the parent class, and it’s objects.

We have our base class where we want our subclass/ child class to inherite from.

ok so we , have a method let’s call it .

if we didn’t have the super. It wouldn’t have call the method inside our parent class let’s see the evidence :


https://github.com/ValorWind1/Java_Review_1.0/tree/master/src/java_youtubeclips/superDemo