Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

1) I am wondering why I can't do this:

ArrayList<String> entries = new ArrayList<String>();
entries.add("entry");
String[] myentries = (String[])entries.toArray();

What's wrong with that? (You might ignore the second code line, it's not relevant for the question)

2) I know my goal can be reached using this code:

ArrayList<String> entries = new ArrayList<String>();
entries.add("entry");
String[] myentries = new String[entries.size()];
myentries = entries.toArray(myentries)

Is this the prefered way of converting the ArrayList to a String Array? Is there a better / shorter way?

Thank you very much :-)

share|improve this question

4 Answers

up vote 5 down vote accepted

The first example returns an Object[] as the list doesn't know what type of array you want and this cannot be cast to a String[]

You can make the second one slightly shorter with

String[] myentries = entries.toArray(new String[entries.size()]);
share|improve this answer
1  
Thank you all for your replies, they are all helpful. I find the wording of this answer a little bit more clear than the others ones. A little reminder for the archive: You can cast from the subclass to the superclass but not the other way round. As Object is a superclass of String, you can cast from String to Object, but not the other way round. That's so basic stuff that you forget it, if you don't use it ;-) – stefan.at.wpf May 7 '11 at 16:21

The backing array created by the ArrayList isn't a String array, it's an Object array, and that's why you can't cast it.

Regarding case 2. That's the common way to convert it to an array, but you can make it a bit less verbose by writing:

String[] myentries = entries.toArray(new String[entries.size()]);
share|improve this answer
List<String> list = ...;
String[] array = list.toArray(new String[list.size()]);
share|improve this answer

The type of entries is lost (as Generics are erased in Java). So when you do the toArray call it can only return the Object type back, as it knows the List must contain Objects. So you can get back an Object[] with your Strings in it. If you want to have an array of Strings then you need to pass that into the toArray method. With casting you can't narrow the Array reference i.e. you can't cast an array of Objects into an array of Strings. But you could go the opposite way, as they are covariant.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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