So, the JDK compiler compiles the first version but not the second, while the Eclipse compiler compiles neither of the two versions.
From the viewpoint of Java byte code, the first version contains two different methods (after type erasure), namely public java.lang.Boolean test() and public java.lang.Double test(), which is perfectly valid. The JDK compiler and the Eclipse compiler sometimes generate such methods when you override generic methods, but those are then marked as synthetic bridge methods.
The second version would contain two methods with the same signature (after type erasure), which is not allowed in Java byte code. Therefore the JDK compiler cannot generate such a class file. I just edited a class file with a hex editor to create a class with such methods, and upon starting the program, I get this error:
Exception in thread "main" java.lang.ClassFormatError: Duplicate method name&signature in class file SameSignatureMethods
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$000(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: SameSignatureMethods. Program will exit.
The class I started with looks like this. I used String and Double because they have the same name length:
public class SameSignatureMethods {
public <T extends String> String test() {
return null;
}
public <T extends Double> Double test() {
return null;
}
public static void main(String[] args) {
System.out.println(new SameSignatureMethods().<Double>test());
}
}
Then, using a hex editor, I changed the signature of the first method to public <T extends String> Double test(), in two places of the class file, one with the raw signature ()Ljava/lang/Double;, one with the generic signature <T:Ljava/lang/String;>()Ljava/lang/Double;.