Is this a bug or feature? The following code runs fine in Java 7 but throws an exception in Java 8:
The last command throws a ClassCast exception in Java8, all the "equivalent" commands above work the same way.
The problem, I think, is that in Java 8, the compiler decides to use String.value(char[])
on the last line instead of String.value(Object)
as in Java 7. I would think this should behave the same way for backward compatibility. Am I missing something?
Note: As Marko suggested this is probably related to target type inference introduced in Java 8.
public class Test {
public static void main(String[] args) {
System.out.println( getVal().getClass()); // String
System.out.println( String.valueOf(Test.<Object>getVal()) ); // "abc"
Object obj = getVal();
System.out.println( String.valueOf(obj) ); // "abc"
System.out.println( String.valueOf(getVal()) ); // 7: "abc", 8: Exception
}
// returns a string for simplicity; imagine that given a field, it fetches values from a database
@SuppressWarnings("unchecked")
public static <T> T getVal() {
return (T) "abc";
}
}
Result in Java 7:
class java.lang.String
abc
abc
abc
Result in Java 8:
class java.lang.String
abc
abc
Exception in thread "main" java.lang.ClassCastException: java.lang.String cannot be cast to [C
at Test.main(Test.java:11)
(Note: [C is an array of chars)
Both Java's are on windows:
java version "1.7.0_45"
Java(TM) SE Runtime Environment (build 1.7.0_45-b18)
Java HotSpot(TM) Client VM (build 24.45-b08, mixed mode, sharing)
java version "1.8.0_05"
Java(TM) SE Runtime Environment (build 1.8.0_05-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.5-b02, mixed mode)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…