我想存储从方法返回的二维数组。没有最后一个,我就失去了所有的价值观。
public static float[][] hesap(int toplamSuc)
{
float[][] temp;
temp = new float[toplamSuc][2];
for (int i = 0; i < toplamSuc; i++)
{
temp = (GGcoder.koordinat(suc[i][4], toplamSuc));
}
return temp;
}
这个“temp”数组存储两个值。第一个值是犯罪信息。其次是纬度和经度。我像下面那样做那个任务,但它不起作用。
float[][] temp = new float[toplamSuc][2];
temp = kokOlusturma.hesap(toplamSuc);
编辑:该函数工作正常,但我无法将数组转移到另一个数组。