这个我们可以这么做——用for循环把int型数组中的元素挨个设到Integer中,下面是具体实现的代码:
public class Test {
public static void main(String[] args) {
int[] arr = { 1, 2, 3, 4, 5, 6, 7 };
Integer[] iarr = new Integer[arr.length];
for (int i = 0; i < arr.length; i++) {
iarr[i] = arr[i];
}
for (int i = 0; i < iarr.length; i++) {
System.out.print(iarr[i]+",");
}
}
}
|