Java Arrays.asList on primitive array type produces unexpected List type [duplicate]

落爺英雄遲暮 提交于 2019-11-26 23:14:00

The problem is that Arrays.asList takes a parameter of T... array. The only applicable T when you pass the int[] is int[], as arrays of primitives will not be autoboxed to arrays of the corresponding object type (in this case Integer[]).

So you can do Arrays.asList(new Integer[] {1, 2, 3});.

Try:

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

Note Integer instead of int. Collections can contain only objects. No primitive types are allowed. int is not an object, but int[] is, so this is why you get list with one element.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!