我正在尝试使用二维数组创建矩阵,但在矩阵中我想将另一个类中的对象放入数组中。我收到“不兼容的类型”错误,我不明白为什么。矩阵应如下所示: | (1,2,3) (1,2,3) | | (3,2,1) (3,2,1) |
这是我正在创建矩阵的类的构造函数。
public MatrixTriple2N(int n)
{
this.n=n;
int length=(int)Math.pow(2, n);
//Triple[][] matrix = new Triple [length][length];
MatrixTriple2N[][] matrix = new MatrixTriple2N [length][length]; //object array
for(int i=0; i<length; i++){
for(int j=0; j<length; j++){
matrix[i][j]=new Triple(); //having the problem here
}
}
}
这是我试图在 MatrixTriple2N 类中调用的类的代码和构造函数。
public class Triple {
private int a;
private int b;
private int c;
public Triple() {
a = b = c = 0;
}
public Triple(int p, int q, int r) {
a = p;
b = q;
c = r;
}