Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why does auto-boxing and unboxing of integers does not work with Arrays.asList in Java? [duplicate]

The following is throws compile error:

int[] arrs = {1,2,4,3,5,6};
List<Integer> arry = Arrays.asList(arrs);

but this works:

for (Integer i : arrs){
   //do something
}

Auto-boxing works in many contexts, I just gave one example of for-loop above. but it fails in the List-view that I make in Arrays.asList().

Why does this fail and why is such as a design implementation chosen?

like image 430
brain storm Avatar asked Jan 12 '23 13:01

brain storm


2 Answers

To make things work you need to use Integer[] instead of int[].

Argument of asList is of type T... and generic types T can't represent primitive types int, so it will represent most specific Object class, which in this case is array type int[].
That is why Arrays.asList(arrs); will try to return List<int[]> instead of List<int> or even List<Integer>.

Some people expect automatic conversion from int[] to Integer[], but lets nor forget that autoboxing works only for primitive types, but arrays are not primitive types.

like image 168
Pshemo Avatar answered Jan 23 '23 04:01

Pshemo


The Arrays.asList takes generic T[] as argument. This T is always an object, not a primitive. When you give an int[] as parameter (not an array of objects but primitives) it'll think the argument is actually the first element of the vararg. So the resulting list will have the fingerprint List<int[]> instead.

If you want to learn more about generics in Arrays, please read this page: http://docs.oracle.com/javase/tutorial/extra/generics/fineprint.html (part: Arrays)

like image 20
Roy van Rijn Avatar answered Jan 23 '23 04:01

Roy van Rijn