gpt4 book ai didi

c++ - ArrayOutOfBoundsException 错误

转载 作者:行者123 更新时间:2023-11-28 00:44:06 26 4
gpt4 key购买 nike

我正在用 java 编写一个分析股票数据的程序。
我几乎让它工作了,但现在它给了我一个 ArrayOutOfBounds 异常。

int n = closingPrices.size();  
double[][] cParray = new double[n][1];
for(int i = 0; i < n; i++)
{
cParray[i][1] = closingPrices.get(i);
}

我希望你能帮助我解决这个问题..

最佳答案

cParray[i]的大小为1,它只能有一个索引为[0]的元素

所以试试 cParray[i][0] = closingPrices.get(i)

double[][] cParray = new double[n][2]

关于c++ - ArrayOutOfBoundsException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17250025/

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