找不到符号 - 越界错误

时间:2013-07-16 21:47:31

标签: java arrays

我正在上课。基本上,我们必须使用一维数组来显示学生的姓名,他当前的成绩和主题。代码如下:

import java.util.*;
import java.util.Arrays;

public class sortStudents {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter the number of students: ");
        int numofstudents = input.nextInt();
        String[] names = new String[numofstudents];
        int[] array = new int[numofstudents];
        String[] subject = new String[numofstudents];
        for(int i = 0; i < numofstudents; i++) {
            System.out.print("Enter the student's name: ");
            names[i] = input.next();
            System.out.print("Enter the student's score: ");
            array[i] = input.nextInt();
            System.out.print("Enter the subject: ");
            subject[i] = input.next();
        }
        selectionSort(names, array, subject);
        System.out.println(names[i] + array[i] + subject[i]);

    }
    public static void selectionSort(String[] names, int[] array, String[] subject) {
        for(int i = array.length - 1; i >= 1; i--) {
            String temp;
            String classTemp = " ";
            int currentMax = array[0];
            int currentMaxIndex = 0;
            for(int j = 1; j <= i; j++) {
                if (currentMax > array[j]) {
                    currentMax = array[j];
                    currentMaxIndex = j;
                }
            }       
                if (currentMaxIndex != i) {
                    temp = names[currentMaxIndex];
                    names[currentMaxIndex] = names[i];
                    names[i] = temp;
                    array[currentMaxIndex] = array[i];
                    array[i] = currentMax;
                    subject[currentMaxIndex] = subject[i];
                    subject[i] = classTemp;
                }
        }       
    }
}

在第22行编译时产生错误。我认为这是由于变量“i”未在循环外进行初始化。但是当我将变量“i”放在循环外部时,我得到一个超出界限的数组错误。任何帮助解决这个问题将不胜感激:)

P.S。我是这个网站的新手,所以如果我发布的帖子不对,我会道歉。

2 个答案:

答案 0 :(得分:0)

当你这样做时:

System.out.println(names[i] + array[i] + subject[i]);

i变量不存在,因为它位于for循环之后,它确实存在。

你可以做的就是把另一个用于循环:

for(int p =0; p < numOfStudents; p++)
{
 System.out.println(names[p] + array[p] + subject[p]);
}

答案 1 :(得分:-1)

当你到达System.out.println(names[i] + array[i] + subject[i]);时,范围内没有i变量。

  1. 如果您每次输入时都尝试打印信息,请将该代码放在现有for循环内。
  2. 如果您尝试在最后打印排序列表,则需要使用另一个变量进行另一个for循环以运行数组。

    for(int j = 0; j < numOfStudents; j++) {
        System.out.println(names[i] + array[i] + subject[i]);
    }