私のプログラムは一連のデータを読み取り、それを処理し、出力し、データがなくなるまで次のデータ セットに進むことになっています。私のプログラムは、1 セットのデータを与えると動作しますが、2 番目のデータを追加するとエラーが発生します。
私のBlueJウィンドウでは、
java.lang.ArrayIndexOutOfBoundsException: 15
端末のエラーは次のように述べています。
java.lang.ArrayIndexOutOfBoundsException: 15
at Prog4.read_votes(Prog4.java:97)
at Prog4.main(Prog4.java:38)
38はメインメソッドにあります:
p4.read_votes(stdin, votesArray);
97は:
votes[i] = stdin.nextInt();
そして、それは read_votes メソッドにあります:
public void read_votes(Scanner stdin, int votes[])
{
//for (int i = 0; i < votes.length; i++)
// votes[i] = stdin.nextInt();
int i = 0;
while (stdin.hasNextInt())
{
votes[i] = stdin.nextInt();
i++;
}
}
これが私のクラスとメインメソッドです:
public class Prog4
{
int mostVotes = 0;
int mostVotesIndex = 0;
int fewestVotes = 0;
int fewestVotesIndex = 0;
public static void main(String args[]) throws Exception
{
//Scanner stdin = new Scanner(System.in);
Scanner stdin = new Scanner(new File("test.txt"));
int num_votes, num_candidates, election_num = 1;
System.out.println("Welcome to Prog4!\n");
Prog4 p4 = new Prog4();
while (stdin.hasNextLine())
{
System.out.println("Results for election " + election_num);
num_candidates = stdin.nextInt();
String[] candidateArray = new String[num_candidates];
p4.read_candidates(stdin, candidateArray);
num_votes = stdin.nextInt();
int[] votesArray = new int[num_votes];
p4.read_votes(stdin, votesArray);
p4.read_votes(stdin, votesArray);
System.out.println("Total votes: " + votesArray.length);
p4.process_highest_vote_getter(candidateArray, votesArray);
p4.process_lowest_vote_getter(candidateArray, votesArray);
p4.process_winner(candidateArray, votesArray);
}
System.out.println("Done. Normal termination of Prog4.");
}
テキストファイルから読み取られるデータは次のとおりです。
4
Owen
Jack
Scott
Robbie
15 0 1 1 2 3 1 0 0 0 0 1 2 2 1 1
2
Erik
Martin
10 0 1 0 1 0 1 0 0 0 1
編集:
read_votes メソッドを次のように変更しました。
public void read_votes(Scanner stdin, int votes[])
{
for (int i = 0; i < votes.length && stdin.hasNextInt(); i++)
votes[i] = stdin.nextInt();
}
最初のデータ セットでは正しい出力が得られますが、2 番目のセットの実行を開始するとエラーが発生します。エラーは次のとおりです。
java.util.InputMismatchException
そしてそれはメインメソッドのこの行にあります: num_candidates = stdin.nextInt();