What is the difference between the keywords this and super?
Both are used to access constructors of class right? Can any of you explain?
super is used to access methods of the base class while this is used to access methods of the current class.
Extending the notion, if you write super(), it refers to constructor of the base class, and if you write this(), it refers to the constructor of the very class where you are writing this code.