No it is just like reffering to any static member of a class, for example in
class Temp
{
static i;
}
Here i can be reffered as Temp.i or temp.i where Temp temp = new Temp.
Originally posted by ashok khetan:
hi,
one query---Is it illegal to associate a static class reference with a reference of its enclosing class?( e.g. in the following code)
code:
_____________
public class top {
static class inner {
void show() {
System.out.println("show() in inner");
}
}
public static void main(String []args) {
inner i = new top().new inner();
i.show();
}
}
_____________