I noticed a peice of code I was looking at, that the author used:
class MainClass
{
protected int someVar = 1;
private SomeClass someClass = new SomeClass(this, new SomeActionListener() {
protected void onAction() {
MainClass.this.someVar ++;
}
});
public MainClass()
{
}
Note how he used MainClass.this to get the proper context of 'this' to change the scope back to MainClass. I've never seen this done before - can someone explain?
Thanks!
someVarin the scope of theonActionmethod, the compiler could have figured out thatsomeVarreferred to theMainClassmember field without the explicit notation ofMainClass.this. The author of the code here was just trying to be explicit to make it clear to another person what variable was being incremented. – Tim Bender May 3 '11 at 18:35