当我尝试使用移动即 Slide.move(1,0) 时出现错误:无法从静态上下文引用非静态方法 move(int,int)
这是我目前的代码,我不知道有什么问题。
public void move(int row, int col) {
char [][] temp= new char [cells.length][];
for (int i= 0; i< cells.length; i++) {
int destRow = (i+row)%cells.length;
temp[destRow] = new char [cells[i].length];
for (int j= 0; j < cells[i].length; j++)
temp[destRow][(j+col)%cells[i].length] = cells[i][j];
}
cells= temp;
}
}