我想给这个整数加一个值
Integer[] nums = new Integer[] {1, 393993, 2918282}
我尝试为此添加值,但代码错误,请给我最好的方法来做到这一点
在 Java 中,数组具有固定大小。所以如果你想要一个动态的数据结构,你应该使用 Java 集合包中的类。
例如,使用ArrayList:
ArrayList<Integer> intList = new ArrayList<Integer>();
intList.add(1);
intList.add(393993);
intList.add(2918282);
// Then add value when you need it using .add() method
一旦实例化了一个数组,就不能向它添加值;它的大小是固定的。你最好使用Java.Util.ArrayList
支持添加超出其容量的项目的东西。