我对 Java 很陌生,但正在进入它。但是,我无法理解为什么我在这里找到的这个示例不起作用:
上课开始时:
String[][] spritesPaint = new String[20][20];
在方法:
for (int funct1 = 0; funct1 <= 2; funct1++) {
if (funct1 == 0) {
for (int funct2 = 0; funct2 < rEnemyNumber; funct2++) {
spritesPaint[0][funct2] = new Integer(rEnemyY[funct2])
.toString();
spritesPaint[1][funct2] = rEnemyGraphic[funct2];
}
} else if (funct1 == 1) {
Arrays.sort(Integer.valueOf(spritesPaint[0].toString()),
new Comparator<Integer[]>() {
@Override
public int compare(final Integer[] entry1,
final Integer[] entry2) {
final Integer time1 = entry1[0];
final Integer time2 = entry2[0];
return time1.compareTo(time2);
}
});
} else if (funct1 == 2) {
for (int funct3 = 0; funct3 < rEnemyNumber; funct3++) {
if (rEnemyCheck[funct3] == true) {
nextPaint = getImage(base, rEnemyGraphic[funct3]);
System.out.println("Next: " + nextPaint);
g.drawImage(nextPaint, rEnemyX[funct3] + worldCenterX,
rEnemyY[funct3] + worldCenterY, this);
}
}
}
}
基本上,我想要做的是有一个二维数组,我在其中存储对象在屏幕上的 Y 位置以及与该对象相关的图像路径,然后按 Y 位置整数对其进行排序。这应该允许我以正确的顺序将元素绘制到屏幕上以获得等距透视图。
但是,我不断收到此错误:
The method sort(T[], Comparator<? super T>) in the type Arrays
is not applicable for the arguments (Integer, new Comparator<Integer[]>(){})
请帮助我,我一直在扭曲我的大脑好几个小时试图理解为什么我现在得到这个错误。