call()から2D配列を返そうとしていますが、いくつか問題があります。これまでの私のコードは次のとおりです。
//this is the end of main
Thread t1 = new Thread(new ArrayMultiplication(Array1, Array2, length));
t1.start();
}
public int[][] call(int[][] answer)
{
int[][] answer = new int[length][length];
answer = multiplyArray(Array1, Array2, length); //off to another function which returns the answer to here
return answer;
}
このコードはコンパイルされますが、これは私の配列を返していません。おそらく間違った構文を使用していると思いますが、良い例は見つかりません。
編集:少し変更しました