3

私のプログラムは一連のデータを読み取り、それを処理し、出力し、データがなくなるまで次のデータ セットに進むことになっています。私のプログラムは、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();

4

3 に答える 3

0

nextInt入力に ​​s がある限り、 sを読み続けます。具体的には、数字 (次の選挙の候補者数を示す) を読み取り、2それを選挙 1 の投票としてカウントしようとしています。

代わりに、メソッド内で from 0tovotes.lengthを繰り返します。read_votes有効な入力が保証されている場合 (または、不正な入力に対して例外をスローしても問題ない場合)、継続的にチェックする必要はありませんhasNextInt()

于 2013-11-11T07:12:40.733 に答える