不确定此处是否接受此类帮助,请告诉我是否不是。
它必须在明天之前完成,它还没有完全完成但是它现在应该可以正常工作了。我正在尝试使用Eclipse调试器(不是很习惯)。
好的,我在另一个项目文件夹中有一个名为“Debugging”的旧类,这是一个调试测试。我没有给它那个名字,这是一个任务。它似乎会导致一些问题,删除它,现在我的堆栈跟踪要小得多。
我尝试调试Board构造函数,将构造函数中的原始代码添加到方法中,并尝试在构造函数中运行该方法。哪个没有任何区别,但仍然。
现在堆栈跟踪看起来像这样:
Thread [main] (Suspended)
Board(Object).<init>() line: 20
Board.<init>() line: 9
Game.<init>() line: 15
Game.main(String[]) line: 11
董事会建设者:
公共类委员会{
private int COLUMNS = 8;
private int ROWS = 8;
private Square[][] grid;
public Board(){
addGrid();
}
public void addGrid(){
grid = new Square[COLUMNS][ROWS];
for(int row = 0; row < 8; row++){
for(int col = 0; col < 8; col++){
grid[col][row] = new Square(this);
}
}
}
方形构造函数:
public class Square {
private Piece piece;
private Board board;
public Square(Board b){
board = b;
}
在我的断点中,我注意到了这一点:
ArrayIndexOutOfBoundsException: caught and uncaught
再次尝试并获得与之前类似的东西:
Thread [main] (Suspended)
ClassNotFoundException(Throwable).<init>(String, Throwable) line: 217
ClassNotFoundException(Exception).<init>(String, Throwable) line: not available
ClassNotFoundException.<init>(String) line: not available
URLClassLoader$1.run() line: not available
AccessController.doPrivileged(PrivilegedExceptionAction<T>, AccessControlContext) line: not available [native method]
Launcher$ExtClassLoader(URLClassLoader).findClass(String) line: not available
Launcher$ExtClassLoader.findClass(String) line: not available
Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available
Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available
Launcher$AppClassLoader.loadClass(String, boolean) line: not available
Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available
Board.addGrid() line: 14
Board.<init>() line: 10
Game.<init>() line: 15
Game.main(String[]) line: 11
答案 0 :(得分:1)
无论出于何种原因,您的Game类无法看到Board类。如果您发布的代码部分是正确的,它看起来就像是因为它们没有代码顶部的包声明。你需要在代码的第一行添加一些内容:
package boardGame;
public class Board {
等。在每节课开始时。此外,包名称必须与包含源文件的文件夹名称相同。