Local Variable Declarations

Local variables are declared in the same manner that field variables are declared, except that local variables do not include modifiers. They are accessible within the do block of the method or constructor in which they are declared. The this and super variables are predefined. They refer to the current object for which a method is invoked and the superclass of the current object being invoked.