我正在尝试使用Java中的线程将两个矩阵相乘。我不知道我的代码发生了什么,因为它没有显示矩阵的乘积,而是显示了0或MatrixC的内存位置。下面是我的线程倍增代码: int ini, end, counter;
public ThreadMatrizes(int ini, int end) {
this.init = ini; // Position of the matrix where the thread
有没有办法在不知道列数的情况下将多维数组传递给函数……我的意思是,假设我想打印一个多维数组,比如说a[][9]和b[][3]。如果我创建了一个公共函数,比如print。the no of columns should be same for both actual andvoid print(int a[][])
我必须为不同的多维数组创建不同的函数如何传递未绑定的多维数组