Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用矩阵做了很多计算,结果我得到了 2x1 矩阵。 如果我使用 matrix.print 类,它会打印值。 但是我想将值保存在两个变量中,但是如果我使用类 matrix.get(int m, int n), 它会给出一个 ArrayOutOfBoundException。 我希望有人能回答我的问题。
如果没有实际看到代码很难说,但你确定你的矩阵尺寸正确吗?即它可以是 1x2 而不是 2x1?尝试将您的参数切换到该get方法,看看会发生什么。另一件要检查的事情:您的矩阵包是使用 1 索引还是 0 索引?即第一行/列的编号是 0 还是 1?
get