我需要執行下面的代碼,但我在下面類型不匹配:不能從列表轉換爲Object []
public int getNearestNeighbour(Point point) {
int result = 0;
try {
Object[] nearestPoint = kdtree.nearest(point.toDouble(), 2);
result = (Integer)nearestPoint[1];
} catch(Exception e) {
debug(e);
result = -1;
}
return result;
}
'nearest'返回'List'。不要指望'Object []'。 –
什麼是'kdtree'? 「最近」的方法在哪裏? –
KDtree是一個執行JAR文件,它包含最近的方法以返回給定點的最近點。我嘗試了許多轉換從列表轉換爲對象,但它不工作...請告訴我 – mumenh