I've noticed that:
class A {
ClassB b = new ClassB() { // anonymous class
/* some expression using this */
}
}
Whenever I use the this keyword inside an anonymous class, the this refers to the enclosing outer class/enum and not to the anonymous class.
Does this mean this can never represent an anonymous class? Just "normal" classes and enums?
Also, can this or super represent an interface?