我已经思考了一段时间。我需要一个可以容纳一些double[][]数组,然后存储该数组以供将来使用的类。我能想到的唯一存储选项是将double[][]存储在ArrayList<>()double[][]中。

我确实实现了如下:

public class AddToArray {
    public String[] parameterNames;
    public ArrayList<double[][]> parametersToChange;

public AddToArray(String[] parameterNames){
    this.parameterNames = parameterNames;
}

public void addToArray(double[][] parametersToChange) throws InsufficientInputException

    for(int i = 0; i < parametersToChange.length; i++){
        if(parametersToChange[i].length != this.parameterNames.length)
            throw new InsufficientInputException("DATA DIMENSION MISMATCH");
    }
    // This below gives nullpointexception.
    this.parametersToChange.add(parametersToChange);

}


我通过这个例子称呼:

        double[][] parametersToChange = {{0.005,0.006},{0.007,0.008}};
    String[] par = {"SI1","SI2"};
    AddToArray abc = new AddToArray(par);
    abc.addToArray(parametersToChange);
    System.out.println(abc.parametersToChange.get(0)[0][0]); // this would (in my ideal world) print out 0.005


我为此调用收到一个空指针异常,并且我认为不可能创建一个“ ArrayList”。我还有什么其他选择,我真的无法弄清楚吗?

最佳答案

您是否初始化了arraylist?

parametersToChange = new ArrayList<>();

09-17 04:55