This question is mostly about proper Java terminology.
I am making the distinction between an inner class, which is tied to instance of its enclosing scope, and an non-inner, nested static class which is independent of an enclosing scope instance.
public class Example {
class Inner {
void f1() {System.out.println(Example.this); } // Inner class can access Example's this
}
static class StaticClass {
void f1() {System.out.println(this); } // Static nested class - Only its own this
}
public static void main(String[] args) {
}
void f1() {
int local=0;
class Local {
void f2() {
System.out.println(Example.this); // Local class - can access Example.this
System.out.println(local); // can access local
}
}
Runnable r = new Runnable() {
@Override
public void run() {
System.out.println(Example.this); // Anonymous local class can access Example.this
System.out.println(local); // can access local
}
};
}
}
Is this the proper terminology and as follows, are all local classes and all anonymous classes also inner classes?
According to the Java Language Specification: