Der folgende Code
public class GenericsTest2 {
public static void main(String[] args) throws Exception {
Integer i = readObject(args[0]);
System.out.println(i);
}
public static <T> T readObject(String file) throws Exception {
return readObject(new ObjectInputStream(new FileInputStream(file)));
// closing the stream in finally removed to get a small example
}
@SuppressWarnings("unchecked")
public static <T> T readObject(ObjectInputStream stream) throws Exception {
return (T)stream.readObject();
}
}
Kompiliert in Eclipse, jedoch nicht mit Javac (Typparameter von T können nicht bestimmt werden; für die Typvariable T mit den oberen Grenzen T, java.lang.Object, existiert keine eindeutige maximale Instanz).
Wenn ich readObject (String file) in ändere
@SuppressWarnings("unchecked")
public static <T> T readObject(String file) throws Exception {
return (T)readObject(new ObjectInputStream(new FileInputStream(file)));
}
es kompiliert in Eclipse und mit Javac. Wer ist richtig, der Eclipse-Compiler oder Javac?