Getting Started with Java
This is a 100% free course, but we need you to first join or login to watch this video.
Alright, join or login here.This video introduces the concept of method overriding and super keyword in Java. Method Overriding is when you take a method already defined in the superclass and change what it does in the subclass. The subclass object will always invoke the overridden version of a method if it is defined. The super keyword can be used to call superclass variables, methods, and constructors.