代码片段:Public void f(Object[] o){}int[] a=new int[3];…f(a);为什么不行?object不是所有类的父类吗?那int型的为什么不行
2 回答
汪汪一只猫
TA贡献1898条经验 获得超8个赞
int 是Integer 的对象啊当让不可以,
import java.util.ArrayList;
import java.util.List;
public class test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
parseIntToInteger(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 });
}
public static void parseIntToInteger(int[] nums) {
Integer[] in = new Integer[nums.length];
for (int i = 0; i < nums.length; i++) {
in[i] = Integer.valueOf(nums[i]);
System.out.println(in[i]);
}
}
}
添加回答
举报
0/150
提交
取消