我在从Array转换为ArrayList
时遇到问题public class one
{
public static void main(String args[])
{
int y[]={12,25,38,46};
two p=new two();
p.setLocations(y);
}
}
import java.io.*;
import java.util.*;
public class two
{
ArrayList<Integer> data_array=new ArrayList<Integer>();
void setLocations(int locations[])
{
ArrayList<Integer> locations_arraylist=new ArrayList(Arrays.asList(locations));
data_array=locations_arraylist;
for(int i=0;i<data_array.size();i++)
System.out.println("data_array["+i+"]="+data_array.get(i));
}
}
在下面一行
ArrayList<Integer> locations_arraylist=new ArrayList(Arrays.asList(locations));
//Copying from array to ArrayList-Its converting,Please suggest
答案 0 :(得分:1)
int[]
与List<Integer>
完全不同。例如,Integer
具有标识和值。没有非常简单的方法来进行转换。
以下方法适用于Java 8.
int[] array = {1, 2, 3, 4, 5};
List<Integer> list = IntStream.of(array).boxed().collect(Collectors.toCollection(ArrayList::new));
以下方式适用于早期版本。
int[] array = {1, 2, 3, 4, 5};
List<Integer> list = new ArrayList<Integer>();
for (int a : array)
list.add(a);
如果您将int[]
传递给Arrays.asList
,则会获得List<int[]>
,而不是List<Integer>
。
答案 1 :(得分:0)
建议对成员/变量使用接口List
,并使用ArrayList
构造函数。另外ArrayList
没有括号表示原始类型而不是通用。
如果您想避免将数组中的值复制到List
的for循环,则有两种解决方案:
番石榴(放在最前面import com.google.common.primitives.Ints;
)
List<Integer> locations_arraylist = Ints.asList(locations);
直接将值传递给Arrays.asList()
List<Integer> locations_arraylist = Arrays.asList(12, 25, 38, 46);
答案 2 :(得分:0)
你可以试试这个:
将int y[]={12,25,38,46};
替换为Integer y[] = {12, 25, 38, 46};
也不需要这一行[{1}}
您可以使用for-each循环打印数组:
ArrayList<Integer> data_array = new ArrayList<Integer>();
答案 3 :(得分:0)
试试这个:
int[] arrayInt = new int[]{1, 2, 3};
List<Integer> list = Arrays.asList(ArrayUtils.toObject(arrayInt));