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

How do I convert an array to a list in Java?

I used the Arrays.asList() but the behavior (and signature) somehow changed from 1.4.2 to 1.5.0 and most snippets I found on the web use the 1.4.2 behaviour.

For example:

int[] spam = new int[] { 1, 2, 3 };
Arrays.asList(spam)
  • on 1.4.2 returns a list containing the elements 1, 2, 3
  • on 1.5.0 returns a list containing the array spam

In many cases it should be easy to detect, but sometimes it can slip unnoticed:

Assert.assertTrue(Arrays.asList(spam).indexOf(4) == -1);
share|improve this question
6  
I think your example is broken: Arrays.asList(new int[] { 1, 2, 3 }); definitely didn't compile in Java 1.4.2, because an int[] is not a Object[]. – Joachim Sauer Apr 9 '10 at 12:28
Oh, you may be right. I didn't have Java 1.4.2 compiler around to test my example before posting. Now, after your comment and Joe's answer, everything makes much more sense. – Alexandru Apr 9 '10 at 12:34

2 Answers

up vote 41 down vote accepted

In your example, it is because you can't have a List of a primitive type. In other words, List<int> is not possible. You can, however, have a List<Integer>.

Integer[] spam = new Integer[] { 1, 2, 3 };
Arrays.asList(spam);

That works as expected.

share|improve this answer

The problem is that varargs got introduced in Java5 and unfortunately, Arrays.asList() got overloaded with a vararg version too. So Arrays.asList(spam) is understood by the Java5 compiler as a vararg parameter of int arrays :-(

This problem is explained in more details in Effective Java 2nd Ed., Chapter 7, Item 42.

share|improve this answer
I understand what happened, but not why it is not documented. I am looking for an alternative solution without reimplementing the wheel. – Alexandru Apr 9 '10 at 12:28
Thank you for pointing to the book. – Alexandru Apr 9 '10 at 12:32
really helpful mention of the book reference. upvoted. – sudmong Jan 25 at 17:24

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.