我正在创建一个具有相同大小的n个矩阵。我想将其循环。每个矩阵都有一个名称。
所以我决定使用OOP来实现这些矩阵:
在类矩阵中:
public class Matrix
{
static double mat[][] = null;
public matrix(int size)
{
mat = new double[size][size];
for (int i = 0; i< size; i++)
{
for(int j = 0 ; j< size;j++)
{
mat[i][j] = 0;
}
}
}
}
我已经成功创建了一个循环,但是现在的问题是我无法控制矩阵。就像我想更改每个矩阵中的值一样。
在主班:
for(int i = 0 ; i<n ;i++)
{
Matrix m = new Matrix(4);
m.print(plan);
System.out.println( );
}
我的期望是: 输入:n = 4 输出:4个矩阵
答案 0 :(得分:2)
使用您的课程,下面的一些伪代码可以帮助您:
-- Read user desired size
-- create a list of Matrix objects (List<Matrix> matrixList = new ArrayList<>();)
-- loop over the user input : for(int cur =0; cur<desiredNumberOfMatrices; cur++)
-- in each loop initiate a new matrix and add it to the list:
Matrix mat = new Matrix(size);
matrixList.add(mat);
-- do whatever you want next
我不明白你为什么会被困住。