// Application ...
Intent i = new Intent();
i.putExtra(EXTRA_FILE_UPLOAD_URIS, mGalleryAdapter.getItems()); 

Uri[] getItems() { return mItems; }

// Service ...
intent.getParcelableArrayExtra(EXTRA_FILE_UPLOAD_URIS); //works, returns Parcelable[]
Uri[] uris = (Uri[])intent.getParcelableArrayExtra(EXTRA_FILE_UPLOAD_URIS);
// ... Breaks with ClassCastException

Why does the cast to Uri[] break, when Uri is Parcelable?

link|improve this question

Post the stacktrace. – Bhesh Gurung Jan 5 at 16:25
Does Uri inherit from Parcelable or the reverse? – fge Jan 5 at 16:25
Uri implements Parcelable – Tom Fobear Jan 5 at 16:59
feedback

2 Answers

up vote 6 down vote accepted

Unfortunately there is no way to cast like that for arrays in Java. You will have to iterate your array and cast each object individually.

The reason for this is type Safety, the JVM simply cannot ensure that the contents of your array can be casted to Uri, without having to iterate thru them, which is why you have to iterate them and cast them individually.

Basically because Parcelable could be inherited by other Objects, there is no guarantee that the Array contains only Uri objects. However casting to a supertype would work since then type safety would be ok.

link|improve this answer
I thought the same (since it's that way in C#) so I looked up java array covariance and it seems to be supported (and to be a hole in type safety). Are my references simply outdated with the current JVM? : angelikalanger.com/Articles/Papers/JavaGenerics/… , c2.com/cgi/wiki?JavaArraysBreakTypeSafety – Kevin Coulombe Jan 5 at 16:38
I think the type safety is related to generics, which is limited to compiletime. Arrays are not generified. They are references and you can do casting. – Bhesh Gurung Jan 5 at 16:41
right, but the Parcelable[] was a new Uri[] in the first place... so it must just be even though Uri is a Parcelable but Uri[] is not a Parcelable[]... – Tom Fobear Jan 5 at 16:48
Uri[] is Parcelable[], but List<Uri> is not List<Parcelable>. – Bhesh Gurung Jan 5 at 17:03
1  
@KevinCoulombe: If the method is returning something like Parcelable[] parcelables = new Uri[]{}; then Uri[] uris = (Uri[])intent.getParcelableArrayExtra(EXTRA_FILE_UPLOAD_URIS); should definitely not fail at runtime with CCE. Even though Parcelable is an interface, but even if were a class then, array[0] = new Parcelable() fails at runtime with ArrayStoreException. And I don't know what difference it makes when looping through the whole array and casting each individual element. – Bhesh Gurung Jan 5 at 17:42
show 3 more comments
feedback

I think what's happening is something as follows:

class Parent { }

class MaleParent extends Parent { }

class FemaleParent extends Parent { }

If the scenario is something as above then the following will fail at runtime:

Parent[] parents = new FemaleParent[]{};
MaleParent[] maleParents = (MaleParent[]) parents;

Something as follows does not raise the exception:

Parent[] parents = new MaleParent[]{};
MaleParent[] maleParents = (MaleParent[]) parents;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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