vote up 10 vote down star
1

I was taken aback earlier today when debugging some code to find that something like the following does not throw a compile-time exception:

 public Test () { 
	 HashMap map = (HashMap) getList(); 
 }

 private List getList(){
	 return new ArrayList();
 }

As you can imagine, a ClassCastException is thrown at runtime, but can someone explain why the casting of a List to a HashMap is considered legal at compile time?

flag

2 Answers

vote up 21 vote down check

Because conceivably getList() could be returning a subclass of HashMap which also implements List. Unlikely, yes, but possible, and therefore compilable.

link|flag
6  
+1: An explicit cast is basically a situation where the programmer is telling the compiler "I know what I'm doing, so do it my way" - if the compiler doesn't know that you're really really wrong, it will go your way. Well, that's one way that it was explained to me. – weiji Sep 29 at 22:42
1  
Yeah, the compiler should complain if you replace List with ArrayList. – Tom Hawtin - tackline Sep 29 at 22:42
@weiji: That's only true to some extent, and far less true than it was in C or C++. The java compiler will only give you so much rope, and if A cannot possibly be an instance of B, it will not compile. – skaffman Sep 29 at 22:44
Thanks. Looking at the JLS (java.sun.com/docs/books/…), it looks obvious after reading your explanation. It follows that final classes like String cannot be cast at compile-time, as there cannot potentially be a subclass which would implement List. – akf Sep 30 at 1:14
vote up 11 vote down

For one thing List is an interface. There is no reason why there couldn't exist a subclass of HashMap which also implements the List interface. In this situation it would be perfectly valid.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.