Consider this:
class SomeClass
{
static int a;
int method()
{
int b = a;
return b;
}
}
How does a
is being accessed in method? Is it this.a
or someClass.a
?
EDIT: Sorry if I'm not clear in my question. What I want to know is: *Is there a hidden this or someClass associated with a [in method] or is it simply a [in method] that is accessing the class member?