Java 泛型不兼容的类型(不存在类型变量 T 的实例)
这基本上是我第一次接触Java泛型类型,我无法弄清楚下面的代码有什么问题。
我有一个带有静态函数usng泛型类型的帮助器类,它应该从输入列表中返回对象列表,这些对象在索引处的某些对象周围(我还没有测试它,如果它工作正常与否,这里不是问题):Helper
inRange
range
index
public class Helper {
public static <T> List<T> inRange(List<T> list, int index, int range) {
List<T> res = new ArrayList<T>();
int N = list.size();
assert(index < N);
if (N == 0)
return res;
int i, j;
/* right range */
i = (index + 1) % N;
j = 0;
while (i != index && j < range) {
res.add(list.get(i));
i = (i + 1) % N;
j++;
}
/* left range */
i = (N + index - 1) % N;
j = 0;
while (i != index && j < range && !res.contains(list.get(i))) {
res.add(lista.get(i));
i = (N + i - 1) % N;
j++;
}
return res;
}
}
然后我想在类中使用它:
import java.util.ArrayList;
public class StrategyA extends StrategyB {
public Decision makeDecision(GameView gameView, Action action, View playerView) {
int pos = gameView.activePlayersViews().indexOf(playerView);
assert(pos != -1);
ArrayList<View> inRange = Helper.inRange(gameView.activePlayersViews(), pos,
playerView.range());
// todo ...
return new Decision(Decision.KindOfDecision.DO_NOTHING, 0);
}
}
其中 是 类型 。gameView.activePlayersView()
ArrayList<View>
然后从我的IDE(IntelliJ IDEA)上呼叫我得到inRange(..)
Error:(8, 56) java: incompatible types: no instance(s) of type variable(s) T exist so that java.util.List<T> conforms to java.util.ArrayList<View>
即使我直接将泛型类型更改为我仍然收到此错误T
View