PPT Slide
Java allows you to override the scope rules by saying which variable/method you’re referring to:
keyword for specifying method or variable from superclass, e.g., super.doYourThing( )
keyword for specifying method
or variable in current object, e.g., this.doYourThing( )