IndexOutOfBoundsException in Java LinkedList



此方法抛出了一个IndexOutOfBoundsException,我不明白为什么,因为我已经防范了它。

private static boolean firstLoop(int custNo, LinkedList<Pipe> stock, LinkedList<Customer> custs, Random generator, String colour, int col, Tracking tracking) {
    if ((stock.get(tracking.getLast(col)) != null) && (stock.get(tracking.getLast(col)).getLength() >= custs.get(custNo).getLength())) {
        stock.get(tracking.getLast(col)).length = Cut.cut(stock.get(tracking.getLast(col)).getLength(), custs.get(custNo).getLength(), colour);
        if (stock.get(tracking.getLast(col)).length < 5) {
            stock.remove(tracking.getLast(col)); //**CAUSES EXCEPTION**
            tracking.add();// recycle
        }
        return true;
    } else {
        for (int j = tracking.getLast(col) + 1; j < stock.size(); j++) {
            if ((stock.get(j).getLength() >= custs.get(custNo).getLength())) {
                // pipe is long enough, cut away the desired length
                stock.get(j).setLength(Cut.cut(stock.get(j).getLength(), custs.get(custNo).getLength(), colour));
                tracking.setLast(col, j);
                return true;
            }
        }
        // no suitable pipes available, order new one of correct colour with
        // random length 100-200 then cut from it, add to arraylist
        Pipe temp2 = new Pipe(col, generator.nextInt(101) + 100);
        temp2.setLength(Cut.cut(temp2.length, custs.get(custNo).length, colour));
        stock.add(temp2);
        tracking.setLast(col, stock.size() - 1);
        return false;
    }
}

我发现标记的行是导致异常的行(程序在注释掉时运行完美)。但是,我很困惑,因为tracking.getLast(col)在其上方的行中完美运行,并且删除函数不在迭代器或循环中。下面是跟踪类:

public class Tracking {
static int lastR=0;
static int lastG=0;
static int lastY=0;

public void setLast(int col, int last){
    if(col==0){
        lastR=last;
    }else if(col==1){
        lastG=last;
    }else if(col==2){
        lastY=last;
    }else{
        System.out.println("Colour does not exist");
    }
}
public static int getLast(int col){
    if(col==0){
        System.out.println(lastR+" red");
        return lastR;
    }else if(col==1){
        System.out.println(lastG+" green");
        return lastG;
    }else{
        System.out.println(lastY+" yellow");
        return lastY;
    }
}

这是抛出错误的方法的使用:

if ((yellowStock.get(Tracking.getLast(2)) != null) && (yellowStock.get(Tracking.getLast(2)).getLength() >= custs.get(i).getLength())) {
  firstLoop(i, yellowStock, custs, generator, "yellow", 2, recycle);
} 

线程"main"中的异常 java.lang.IndexOutOfBounds异常:索引:3,大小:3 at java.util.LinkedList.checkElementIndex(Unknown Source) at java.util.LinkedList.get(Unknown Source) at NextFit.next(NextFit.java:26) at Main.main(Main.java:58)

问题如下:

LinkedList.remove()有两种口味:

  1. LinkedList.remove(int index) ,用于删除指定索引处的元素
  2. LinkedList.remove(Object o) ,用于删除指定的元素

此外,tracking.getLast(int col)返回int,所以当你调用

stock.remove(tracking.getLast(col));

调用的remove()版本是数字 1,而不是您想要的数字 2。

尝试打电话给stock.remove(col);或任何有意义的电话。

顺便说一句,您的编码风格可以使用一些改进,尤其是在Tracking中使用静态字段和方法,而不是实例字段和方法。

相关内容

  • 没有找到相关文章

最新更新