Can somebody point me to the part of the specification that addresses this?
This will mostly be defined in the section concerning Method invocation expressions:
The first step in processing a method invocation at compile time is to
figure out the name of the method to be invoked and which class or
interface to search for definitions of methods of that name.
For the class or interface to search, there are six cases to consider,
depending on the form that precedes the left parenthesis of the
MethodInvocation:
- [...]
- If the form is
Primary . [TypeArguments] Identifier
, then let T
be
the type of the Primary expression. The class or interface to search
is T
if T
is a class or interface type, or the upper bound of T
if T
is a type variable.
Here, the Primary expression is the class instance creation expression. So the type to search is the anonymous type.
Am I right in thinking that the only way you can invoke hello is
immediately like this. What about reflection?
As long as an expression evaluates to the anonymous type T
, whether through direct access like you have, or through generics, you have access (regular access rules apply) to the members that T
declares. This isn't limited to methods. You can access fields or types, though it's not as useful for types. For example,
Object var = new Object() {
class Nested {
}
}.new Nested();
Since there's no way to refer to the nested type without the enclosing type, you can't declare a variable of that nested type. The usefulness declines very quickly. (Presumably, that's also why you can't have a static
nested type within this anonymous class.)
Reflection also exposes this method. The generated anonymous class contains this method, so you can retrieve it and invoke it. The process is the same. The fact that the instance is from an anonymous class doesn't matter. The same strategy as presented in How do I invoke a Java method when given the method name as a string? applies.
For example,
Object ref = new Object() {
public void method() {
System.out.println("hidden");
}
};
Class<?> anonymousClass = ref.getClass();
Method method = anonymousClass.getMethod("method");
method.invoke(ref, new Object[0]);
Don't ever write code like this.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…