What is the difference between the keywords this and super?
this
super
Both are used to access constructors of class right? Can any of you explain?
this is used to access the methods and fields of the current object. For this reason, it has no meaning in static methods, for example.
super allows access to non-private methods and fields in the super-class, and to access constructors from within the class' constructors only.