无法将新元素添加到数组和数组列表

时间:2019-05-28 21:00:24

标签: java arrays arraylist

我知道这个问题可能很简单,但是显然我找不到任何解决方案。 我尝试将元素添加到数组和数组列表中,但它会导致意外的错误。

ArrayList<Double> save = new ArrayList<Double>();
save.add(x);
double[] tab = new double[4];
tab[0]=x;

错误:

enter image description here

我认为这可能是缺少tools.jar的问题,但它不存在,因此我无法将其提供给spring tools suite。

0 个答案:

没有答案