vote up 1 vote down star

Suppose class B extends class A. I have a List<A> that I happen to know only contains instances of B. Is there a way I can cast the List<A> to a List<B>?

It seems my only option is to iterate over the collection, casting one element at time, creating a new collection. This seems like an utter waste of resources given type erasure makes this completely unnecessary at run-time.

flag

65% accept rate
Thank you everybody for the good answers. Casting to a List is the most appropriate solution in this case. I am willing to sacrifice type safety for performance in this case. – landon9720 Oct 30 at 17:52

6 Answers

vote up 6 vote down check

You can cast through the untyped List interface:

List<A> a = new ArrayList<A>();
List<B> b = (List)a;
link|flag
1  
And loose all type safety in the process! If A is a base class of B, then the list can contain A, while the code that handles b expects it to return only B objects. That's the very reason why that case is not allowed in the first place. – Joachim Sauer Oct 30 at 17:00
1  
@Joachim, I think that is the point of the original question. The only disadvantage of this approach over the traditional cast is that if you are wrong, the bug won't appear until much later and be harder to find, whereas an iteration would reveal your mistake. – Yishai Oct 30 at 17:03
1  
@Joachim - you are losing type-safety; the compiler cannot guarantee that the List<A> really is a List<B> which is why it won't let you do the cast in the first place. If you assert it yourself, that's fine, but this is not statically type-safe. – Andrzej Doyle Oct 30 at 17:05
"I happen to know only contains instances of B". So long as he is only using the resulting list to retrieve elements and not to insert them (which could trigger a runtime check for a checkedList, for example), he should be fine. – Pavel Minaev Oct 30 at 17:11
Pavel has it. The conditions of the question was that he was already convinced it only had instances of B. Without that condition, the question doesn't even make sense. – M1EK Oct 30 at 17:34
vote up 0 vote down

List<A> is not a subtype of List<B>!

The JLS even mentions that explicitly:

Subtyping does not extend through generic types: T <: U does not imply that C<T> <: C<U>.

link|flag
vote up 1 vote down

Sadly, no. Even though B is an A, List<B> is not a List<A>.

So your iteration is the answer.

link|flag
vote up -2 vote down

Unfortunately, there's no magic way. Type erasure is sometimes a pity :(

link|flag
Eh? If Java didn't have type erasure you wouldn't be able to do it. With erasure you can (but it is morally wrong). – Tom Hawtin - tackline Oct 30 at 18:33
That's true! My mistake. – Sinuhe the Octopus Oct 30 at 22:47
vote up 1 vote down

You can't. While B is a subclass of A, the same does not hold true with generics. This was a conscious design choice with Java, and yes, given that the types aren't even there at runtime anymore, this is painful.

The Wikipedia article about Covariance and Contravariance has some more information on this.

You could probably use a List<? extends A>:

List<? extends A> ListB = ListA;

It might work, but I'm not terribly sure, not having used Java generics for quite a while now.

link|flag
vote up -2 vote down

No - you cannot cast directly from List<A> to List<B> since both are different types - your only option is to iterate through List<A> and cast every object of type A into a object of type B and add it to List<B>

link|flag
That's simply wrong. – jarnbjo Oct 30 at 17:01

Your Answer

Get an OpenID
or

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