我的程序根本不打印任何东西。
首先,我在一个单独的类(板)中初始化了板:
public class Board {
public char board[][] = new char[9][9];
public void main(char[] args){
for(int i=0; i<9; i++){
board[i][0] = '_';
board[i][8] = '_';
}
for(int h=0; h<9; h++){
board[0][h] = '|';
board[8][h] = '|';
}
for(int x=0; x>9; x++){
for(int y=0; y>9; y++){
System.out.println(board[x][y]);
}
}
}
}
然后在 main 中调用它,使用PrintLine
“Hello World”来检查代码是否被访问。没有错误被标记,但它也没有打印任何东西。下面的主要内容也只是为了检查我没有做任何简单而愚蠢的事情:
public static void main(String[] args) {
Ticker T = new Ticker();
Board B = new Board();
for(int x=0; x>9; x++){
for(int y=0; y>9; y++){
System.out.println("Hello World");
System.out.print(B.board[x][y]);