gpt4 book ai didi

java - 创建用户输入的 n 个矩阵

转载 作者:行者123 更新时间:2023-12-02 01:32:46 24 4
gpt4 key购买 nike

我正在练习创建一个具有相同大小的 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个矩阵

最佳答案

使用您的类,这里有一些伪代码可以帮助您:

-- 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

我不明白为什么你会被卡住。

关于java - 创建用户输入的 n 个矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55805422/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com