gpt4 book ai didi

java - 选举程序中的 ArrayIndexOutOfBoundsException

转载 作者:塔克拉玛干 更新时间:2023-11-01 23:07:57 25 4
gpt4 key购买 nike

我有一小段代码,每当我运行它时都会抛出异常,我不明白为什么:

public class Debug 
{
public static void main (String[] args)
{
String[] electionName = {"John Smith", "Mary Miller", "Michael Duffy", "Tim Robison", "Joe Ashtony"};
int[] electionVotes = {5000, 4000, 6000, 2500, 1800};
int i = 0;
for (i = 0; i < electionVotes.length; i++);
{
System.out.println(electionName[i] + electionVotes[i]);
}
}
}

谁能帮帮我?

最佳答案

您的 for 循环有一个小错误。它以 ;

结尾

for (i = 0; i < electionVotes.length; i++);

因此 for 循环实际上什么都不做,只是将 i 递增到 5,之后您访问 2 个数组中索引 5 处的元素,这将抛出您所看到的异常。

关于java - 选举程序中的 ArrayIndexOutOfBoundsException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36603094/

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