1

我现在正在学习面向对象的概念。我写了一个简单的类来接受用户输入分数,但是我得到了一个越​​界异常,我不知道为什么!我不明白为什么这会访问超过 4 的索引?这是代码:

我将 5 个对象实例化为数组的 HighScores 类:

public class HighScores
{
    String name;
    int score;

    public HighScores()
    {
        this.name = "";
        this.score = 0;
    }
    public HighScores(String name, int score)
    {
        this.name = name;
        this.score = score;
    }

    void setName(String name)
    {
        this.name = name;
    }

    String getName()
    {
        return this.name;
    }

    void setScore(int score)
    {
        this.score = score;
    }

    int getScore()
    {
        return this.score;
    }
}

处理 HighScore 对象的程序:

import java.util.Scanner;

public class HighScoresProgram
{

    public static void main(String[] args)
    {
        HighScores[] highScoreObjArr = new HighScores[5];

        for (int i = 0; i < highScoreObjArr.length; i++)
        {
            highScoreObjArr[i] = new HighScores();
        }
        initialize(highScoreObjArr);
        sort(highScoreObjArr);
        display(highScoreObjArr);
    }

    public static void initialize(HighScores[] scores)
    {
        Scanner keyboard = new Scanner(System.in);
        for(int i = 0; i < scores.length; i++)
        {
            System.out.println("Enter the name for for score #" + (i+1) + ": ");
            String temp = keyboard.next();
            scores[i].setName(temp);
            System.out.println("Enter the the score for score #" + (i+1) + ": ");
            scores[i].setScore(keyboard.nextInt());
        }

    }

    public static void sort(HighScores[] scores)
    {
        for(int i = 0; i < scores.length; i++)
        {
            int smallest = i;

            for (int j = i; i < scores.length; i++)
            {
                if (scores[j].getScore() < scores[smallest].getScore())
                    smallest = j;
            }

            HighScores temp = scores[i];
            HighScores swap = scores[smallest]; //This is where I'm getting the out of bounds exception.
            scores[i] = swap;
            scores[smallest] = temp;

        }
    }

    public static void display(HighScores[] scores)
    {
        System.out.println("Top Scorers: ");
        for(int i = 0; i < scores.length; i++)
        {
            System.out.println(scores[i].getName() + ": " + scores[i].getScore());
        }

    }

}
4

5 回答 5

5

我想下面的行是问题

for (int j = i; i < scores.length; i++)

尝试更新排序功能如下

 public static void sort(HighScores[] scores)
    {
        for(int i = 0; i < scores.length; i++)
        {
            int smallest = i;

            for (int j = i; j < scores.length; j++)
            {
                if (scores[j].getScore() < scores[smallest].getScore())
                    smallest = j;
            }

            HighScores temp = scores[i];
            HighScores swap = scores[smallest]; //This is where I'm getting the out of bounds exception.
            scores[i] = swap;
            scores[smallest] = temp;

        }
    }
于 2013-10-13T05:24:28.830 回答
2

我认为问题在于循环结束时意味着i不再更小scores.length。这意味着当您退出该行下方的循环时,您基本上是在检查边界:

for (int j = i; i < scores.length; i++)
于 2013-10-13T05:27:13.247 回答
2
 for (int j = i; i < scores.length; i++)

你在这里增加 i 而不是 j 。

于 2013-10-13T05:27:26.530 回答
0
for (int j = i; j < scores.length; j++)
于 2013-10-13T05:35:52.113 回答
0

这里的问题是你i在外循环和内循环中增加了相同的变量。您的外循环运行 4 次,但如果i进一步,内循环会增加值。在内部 for 循环中使用不同的变量

于 2013-10-13T05:25:56.223 回答