Here's a brief example from the JLS section 8.4.8.2.
class Super {
static String greeting() { return "Goodnight"; }
String name() { return "Richard"; }
}
class Sub extends Super {
static String greeting() { return "Hello"; }
String name() { return "Dick"; }
}
class Test {
public static void main(String[] args) {
Super s = new Sub();
System.out.println(s.greeting() + ", " + s.name());
}
}
According to the discussion of the example, the output of running main() will be "Goodnight, Dick". This is because static methods are called based on the static type of the variable/expression they are called on.
Here's my question: Any even moderately flow-sensitive compiler could figure out that the type of any object stored in s at the time of the call must always be Sub, so if the compiler were allowed to use that information, even calling static methods could have some of the feel of dynamic binding. Why is this not allowed? Does Java have the express goal that every compiler produces bytecode that behaves exactly the same or is there some other reason?
invokestatic, the bytecode takes only a class and method -- the ability to use an instance variable of the class is a sort of "syntactic sugar" on the part of the compiler. – Hot Licks Jul 12 '12 at 20:54