我有一个类Cell和一个类Neighbour扩展了Cell。但是,当我尝试将ArrayList<Neighbour>传递给期望ArrayList<Cell>的函数时出现错误。我错过了什么?

class Cell {
    PVector pos;

    Cell(PVector pPos) {
        pos = pPos.get();
    }
}

class Neighbour extends Cell {
    int borders = 0;

    Neighbour(PVector pPos) {
        super(pPos);
    }
}

private int inSet(PVector pPos, ArrayList<Cell> set) {
    [...]

    return -1;
}

[...]

ArrayList<Neighbour> neighbours = new ArrayList<Neighbour>();
PVector pPos = new PVector(0, 0);

[...]

inSet(pPos, neighbours);


最后一行抛出错误`方法iniSet(PVector,ArrayList)不适用于参数(PVector,ArrayList);

谢谢你的帮助!

最佳答案

那是因为

List<A> != List<B> ... even if B extends A.


您需要做的是将功能修改为以下内容

private int inSet(PVector pPos, ArrayList<? extends Cell> set) {
    [...]
    return -1;
}


希望能有所帮助。

07-26 01:56