我正在尝试增加数组列表的大小,但它似乎不想工作。
我正在这样做:
final int QUEUE_CAPACITY = 27;
ArrayList adjacencyList = new ArrayList<Integer>(QUEUE_CAPACITY);
但是当我尝试使用具有两个参数的 add 添加一些东西时, (index,value) 我收到了这个错误:
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 1, Size: 0