我正在尝试将一个对象移动到要单击的对象上方的按钮上,例如board[i-1][j].setText("X")
,因为我是在for循环中执行此操作的,所以不需要查找特定的索引,我只想引用它。
public void actionPerformed(ActionEvent e) {
if (((JButton)e.getSource()).getText().equals("\u2193") && hasWinner == false &&) {
button.setText(currentPlayer);
if(i<=1){
board[i-1][j].setText("X");
}