Super Keyword
Everything on SkillVeris tagged Super Keyword — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
What Does super Do in OOP?
"super" is a keyword used inside a subclass to call a method or constructor defined on its parent class, most commonly to invoke the parent constructor or to e…
What is Constructor Chaining? Explained
Constructor chaining is the technique of one constructor invoking another constructor — either in the same class via `this(...)` or in the parent class via `su…
this() Constructor Call vs super() Constructor Call
`this(...)` invokes another constructor of the same class, while `super(...)` invokes a constructor of the immediate parent class, and both must appear as the…