0

我正在尝试使用二维数组创建矩阵,但在矩阵中我想将另一个类中的对象放入数组中。我收到“不兼容的类型”错误,我不明白为什么。矩阵应如下所示: | (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;
   }
4

1 回答 1

0

我假设 MatrixTriple2N 是类型对象的矩阵Triple。因此

MatrixTriple2N[][] matrix = new MatrixTriple2N[length][length];

可能不是您想要的。我假设你喜欢装箱。喜欢

Triple[][] matrix = new Triple[length][length];

现在您可以分配一个新的 Triple 作为该矩阵的元素。

于 2013-10-21T21:34:27.180 回答