-2
public class SparseMatrix
{       
     static SparseObjectMatrix2D matrix = new SparseObjectMatrix2D(1000000, 1000000);

     public static void main(String[] args)
     {
            matrix.set(1, 2, 3.0);
     }      
}

这是我得到的错误:

java.lang.ExceptionInInitializerError Caused by:
java.lang.IllegalArgumentException: matrix too large at
cern.colt.matrix.impl.AbstractMatrix2D.setUp(Unknown Source) at
cern.colt.matrix.impl.AbstractMatrix2D.setUp(Unknown Source) at
cern.colt.matrix.impl.SparseObjectMatrix2D.<init>(Unknown Source) at
cern.colt.matrix.impl.SparseObjectMatrix2D.<init>(Unknown Source) at
SparseMatrix.<clinit>(SparseMatrix.java:18) Exception in thread "main"
4

1 回答 1

2

你不能。从文档中:

抛出:
IllegalArgumentException - 如果rows<0 || columns<0 || > (double)columns*rows > Integer.MAX_VALUE

不是创建一个用 x 和 y 坐标寻址的矩阵,而是返回 a Value,创建 a HashMap<Coordinates, Value>,其中Coordinates是一个包含 x 和 y 的简单类。

于 2014-12-10T20:57:24.180 回答