Java数组中输入不确定个数的数,该怎么做

2024-11-24 01:32:53
推荐回答(1个)
回答1:

用List,但是List里的数都是以对象的形式储存的,比如你定义一个整数数组,你会这么定义

int[] intArray = new int[10];

但是在List里,因为整数int在List里是对象,所以我们要用Integer

List list = new ArrayList<>();

之后可以用add加入到list里

list.add(new Integer(4));
list.add(new Integer(6));

如果你想转会成数组的话

Integer[] intArray = list.toArray(new Integer[list.size()]);
System.out.println(intArray.length);

用List的好处就是把所有东西储存到list后再转成数组,数组不多不少刚好被填满