gpt4 book ai didi

java - ArrayIndexOutOfBound 异常

转载 作者:行者123 更新时间:2023-12-01 14:00:12 26 4
gpt4 key购买 nike

这是我遇到索引越界异常的代码,我不明白为什么,

 int index = array.length - 1;
E item = array[index];

while (item == null && index >= 0) {
index--;
item = array[index];
}

我收到 java.lang.ArrayIndexOutOfBoundsException: -1 at 项目=数组[索引];我不知道我哪里错了。有人可以帮忙吗?

最佳答案

while (item == null && index >= 0) {
index--;
item = array[index];
}

应该是

while (item == null && index >= 0) {
item = array[index--];
}

关于java - ArrayIndexOutOfBound 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19392240/

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