Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
513 views
in Technique[技术] by (71.8m points)

generics - Varargs to ArrayList problem in Java

I don't understand why the following does not work:

public void doSomething(int... args){
  List<Integer> broken = new ArrayList<Integer>(Arrays.asList(args))
}

Its my understanding that the compiler converts the "int... args" to an array, so the above code should work.

Instead of working I get:

cannot find symbol symbol: constructor ArrayList(java.util.List<int[]>) location: class java.util.ArrayList<java.lang.Integer>

Thats bizarre. I'm not adding an array to array list, I'm adding each element from the list to the arraylist. Whats going on?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Java cannot autobox an array, only individual values. I would suggest changing your method signature to

public void doSomething(Integer... args)

Then the autoboxing will take place when calling doSomething, rather than trying (and failing) when calling Arrays.asList.

What is happening is Java is now autoboxing each individual value as it is passed to your function. What you were trying to do before was, by passing an int[] to Arrays.asList(), you were asking that function to do the autoboxing.

But autoboxing is implemented by the compiler -- it sees that you needed an object but were passing a primitive, so it automatically inserted the necessary code to turn it into an appropriate object. The Arrays.asList() function has already been compiled and expects objects, and the compiler cannot turn an int[] into an Integer[].

By moving the autoboxing to the callers of your function, you've solved that problem.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...