这是我的代码:
public int getPieceCoords(int entityId) {
for(int x = 0;x<8;x++) {
for(int y=0;y<8;y++) {
if(position[x][y] == entityId){
return position[x][y];
}else{
return (int)null;
}
}
}
//Need a return here, but it overrides the returns above
}
所以,我无法让它返回我想要的实际输出,不胜感激!