I expected this code to display true:
int[] array = {1, 2};
System.out.println(Arrays.asList(array).contains(1));
|
I expected this code to display
|
|||||||
|
|
The It works as you expect if you change |
|||
|
|
|
The method An array of primitives is an
This compiles and is equivalent to your code. It also obviously returns false. The compiler translates varargs calls into calls with a single array, so calling a varargs method that expects parameters So here's the above code once again, the way the compiler implements it internally:
Here are some good and bad ways to call
Reference:
But to actually solve your problem in a simple way: There are some library solutions in Apache Commons / Lang (see Bozho's answer) and in Google Guava:
|
|||||||||||
|
( But if you want to just call |
|||||||||||||
|
|
It seems like your understanding of Try it with
|
|||
|
|
|
The following code displays true:
(Your version fails, since Int's not beeing objects, but Int[] is an object. Therefor you will call asList(T... a) with one element beeing a Collection, since it is not possible to have an Collection a.) |
|||
|
|
|
When you call
on your array of primitives, you get a List instance containing one object: an array of int values! You have to first convert the array of primitives into an array of objects, as @Bozho suggests in his answer. |
|||
|
|
|
Autoboxing just doesn't work the way you want it to in this case. The following code may be a bit verbose, but does the job of converting an int array to a list:
|
|||
|
|
|
If you only want to check whether the array contains certain element just iterate over array and search for element. This will take o(n/2). All other solutions are less effective. Any method that copies array to list must iterate over array and therefore this operation only requires n atomic assignments. |
|||
|
|
I dont think there is a method call you could use. Try it like this
|
|||
|