- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在测试 arrayOutOfBounds 异常时遇到了问题。在下面的代码中,我的 if...else 语句应该阻止骑士离开我的棋盘,但我仍然遇到异常。有人在这里看到我的错误吗?感谢您的帮助!
public int[][] firstMoveChoice() {
int knight = 0;
x += 1;
y += 2;
if (x > board.length) { // this tests to make sure the knight does not move off the row
System.out.println("Cannot move off board on x axis");
x -= 1;
}
else if (y > board.length) { // this tests to make sure the knight does not move off the column
System.out.println("Cannot move off board on y axis");
y -= 2;
}
else { // this moves the knight when the above statements are false
board[x][y] = ++knight;
System.out.println("This executed");
}
for(int[] row : board) {
printRow(row);
}
}
这是最后打印的电路板:
This executed
1 0 0 0 0 0 0 0
0 0 2 0 0 0 0 0
0 0 0 0 3 0 0 0
0 0 0 0 0 0 4 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 8
at knightstour.Moves.firstMoveChoice(Moves.java:53)
at knightstour.KnightsTour.main(KnightsTour.java:24)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)
这是我的 ChessBoard 类:
public class ChessBoard {
int[][] board;
public ChessBoard() {
this.board = new int[8][8];
}
}
这是我的 printRow 方法:
public static void printRow(int[] row) {
for (int i : row) {
System.out.print(i);
System.out.print(" ");
}
System.out.println();
}
这是我的主要方法。当它调用起始位置时,它所做的只是将 board[0][0] 分配给 1。如果您需要实际代码,请告诉我。
public static void main(String[] args) {
MoveKnight myKnight = new MoveKnight();
myKnight.startingLocation();
myKnight.firstMoveChoice();
myKnight.firstMoveChoice();
myKnight.firstMoveChoice();
myKnight.firstMoveChoice(); // this moves the knight off the board
}
最佳答案
您的if
条件必须是'>='。尝试:
if (x >= board.length) { // This tests to make sure the knight does not move off the row
System.out.println("Cannot move off board on x axis");
x -= 1;
}
else if (y >= board.length) { // This tests to make sure the knight does not move off the column
System.out.println("Cannot move off board on y axis");
y -= 2;
}
关于java - ArrayOutOfBounds 测试代码不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26759174/
我正在研究合并排序,并且抛出了ArrayIndexOutOfBoundsException。我一直在梳理代码寻找错误,但找不到它。异常堆栈跟踪表明它来自第 77 行的合并函数,即 temp[curre
我在测试 arrayOutOfBounds 异常时遇到了问题。在下面的代码中,我的 if...else 语句应该阻止骑士离开我的棋盘,但我仍然遇到异常。有人在这里看到我的错误吗?感谢您的帮助! pub
这个问题在这里已经有了答案: How can I avoid ArrayIndexOutOfBoundsException or IndexOutOfBoundsException? [duplica
我正在尝试实现一个通用的合并排序算法,该算法使用临时数组来存储合并的部分,然后复制排序的数据。但是,程序在复制步骤(最后一个 while 循环)中不断失败,并抛出 ArrayIndexOutOfBou
我正在尝试使用快速排序方法来对部分或部分数据进行排序。我认为我的分区方法是正确的,我对左段和右段进行快速排序的递归调用给了我一个数组越界异常,但我似乎无法弄清楚。这是我编写的代码,并且在 中收到错误
我创建了一个写入文件的方法,如下面的代码所示。使用两个给定参数从另一个方法调用此方法 1000 次。 但是,在其中 5 个调用中,此方法捕获错误“e”并打印出: java.lang.ArrayInde
我有这些 while 循环和 for 语句。它正在做我想要的事情,打印数组的特定部分。但是,我不断收到越界声明。我想不通。我觉得我的 if 语句应该防止索引变得更大。 注意:除了创建此数组并初始化其值
这个问题在这里已经有了答案: What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? (24
此代码是我的康威生命游戏模拟代码的一部分。这种特殊的方法是一个“步骤”,将游戏向前推进了一代人。当它尝试检查直方图是真还是假时似乎出现错误(目前这是一个 10 x 10 boolean 数组)。该代码
我正在尝试在java中实现合并排序,并且我已经按照CLRS书中给出的算法编写了代码。当我尝试运行代码时,我继续遇到数组越界异常。老实说,我不明白我在这里犯了什么错误。 package mergesor
虽然这段代码在没有添加 GUI 的情况下工作正常。我现在遇到以下异常。 (我读到此类异常的 SCCE 发布了整个堆栈跟踪以及堆栈跟踪第一行的代码。我希望它很清楚。) 错误: Exception
这个问题已经有答案了: What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? (25 个回答)
我的代码编译没有错误,但在我的输出中,第 37 行出现 ArrayOutofBoundsException。除了素数计数器之外,一切正常。谁能看到我在这段代码中犯了错误吗?主计数器在我的另一个程序中工
我似乎遇到了一个问题,当我访问超出数组范围的索引时,我的编译器没有正确给出异常。 例如:在我的代码中我有 int reds[8][8]; 这应该创建一个高度为 8(0-7)、宽度为 8(0-7) 的二
我一直在浏览很多关于这个的网站,并尝试了一些不同的东西,但我被难住了。将不胜感激一些帮助。条件正常,检查是否选中了一个复选框(真),但是当我执行 model.removeRow(row) 时,它会给我
我正在使用 Commonsware 的 EndlessAdapter。当我添加了一个 header View 时,我得到了我的 listView,我得到了这个错误和 LogCat: 04-22 17:
在开发我的第一个“大”Spring 项目时,我陷入了一个无法找到任何反馈的事情。我尝试列出所有用户 - 问题出现在 UserServiceJpaImpl 类中的 findAll 方法中(它只从 Jpa
我很难在 Opensuse 13.2 上安装可用的 Android Studio。 我已经尝试过 Java OpenSDK 1.7.0_75-b13 和 1.8.0_40-b10 以及 Oracle
我正在努力完成一项任务,其中必须将文本文件中的数据存储到 ArrayList 中,其中包括歌曲描述的字符串值以及持续时间和评级值的 double 值。 很抱歉造成困惑,我是这个网站的新手。 这是我尝试
我正在使用 GUI 进行用户名/密码登录。我使用 while 循环,将文件名扩展为 hasNext() 作为将文件中的信息存储到数组中的条件,以便我可以将用户的输入与文件中存储的信息进行比较。然后我使
我是一名优秀的程序员,十分优秀!