posted 19 years ago
In this case, this is irrelevant because the variable is static.
You are simply printing the value of i in the class Honley.
Instance methods can access static members so you set the value of the static member i to 10, and then when you print this.i, the value of the variable i associated with the class Honley is printed.