I\'m talking java language.
Variable \"this\", when used inside a class, refers to the current instance of that class, which means you cannot use \"this\" inside a s
No, super does refer to an instance -- the same instance that this refers to -- the current object. It's just a way to reference methods and fields in defined in the superclass that are overridden or hidden in the current class.
super
this