gpt4 book ai didi

java - "Exception in thread "主要 "java.lang.ArrayIndexOutOfBoundsException: 178"错误,不知道为什么

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

我使用两个数组绘制字母“S”。第一个数组用 # 填充(字母所在的任何地方都会有一个空格)。第二个数组是每个空间的位置。

代码对我来说看起来不错,但我遇到了一个不熟悉的运行时错误:线程“main”java.lang.ArrayIndexOutOfBoundsException中的异常:178 at Letter.main(Letter.java:20)。这是我的代码/任何关于为什么这不起作用的输入将不胜感激。

public class Letter {
public static void main (String [] args) {
char [] array = new char [150];
for (int index = 0; index < array.length; index ++)
{
array [index] = '#';
}
int [] indexNumbers = {0,1,2,3,4,5,6,7,8,9,10,20,30,40,50,
60,70,71,72,73,74,75,76,77,78,79,89,99,109,119,129,139,140,
141,142,143,144,145,146,147,178,149};
for (int i = 0; i < indexNumbers.length; i++)
{
array [indexNumbers[i]] = ' ';
}
for (int index = 0; index < array.length; index ++)
{
if (index % 10 == 0 && index > 0)
System.out.println();
System.out.print (array[index]);
}
}
}

编辑:非常感谢大家。这是多么可笑的错误啊!干杯!

最佳答案

int [] indexNumbers 中有一个拼写错误。

178 应为 148

您得到的异常非常非常信息丰富:

java.lang.ArrayIndexOutOfBoundsException: 178

如果你还是看不懂,使用调试器会对你有很大帮助。

关于java - "Exception in thread "主要 "java.lang.ArrayIndexOutOfBoundsException: 178"错误,不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16152087/

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