我有一个程序可以将对象向左或向右移动。我想利用它,以便它同时与鼠标侦听器和按键侦听器一起使用。使用左箭头键和鼠标左键单击执行相同的选项。鼠标右键或箭头键反之亦然。我的代码目前看起来有点像这样,我删掉了一些不必要的部分。
public class TetrisApplet extends JApplet implements MouseListener, KeyListener {
public void init() {
tetris.addMouseListener(this);
tetris.addKeyListener(this);
public void mouseReleased(MouseEvent e) {
if (e.getButton() == MouseEvent.BUTTON1) {
if (x > 0 && a[x - 1][y] == 0) {
shape.move(-20, 0);
x--;
}
}
if (e.getButton() == MouseEvent.BUTTON3) {
if (x < 9 && a[x + 1][y] == 0) {
shape.move(+20, 0);
x++;
}
}
}
public void keyPressed(KeyEvent e) {
int keyCode = e.getKeyCode();
switch (keyCode) {
case KeyEvent.VK_LEFT:
if (x > 0 && a[x - 1][y] == 0) {
shape.move(-20, 0);
x--;
}
break;
case KeyEvent.VK_RIGHT:
if (x < 9 && a[x + 1][y] == 0) {
shape.move(+20, 0);
x++;
}
break;
}
}
所以我的问题是,有没有人知道为什么它不适用于钥匙?我的程序允许使用鼠标单击来移动对象,但是按下左箭头和右箭头键绝对没有任何作用。而且我不知道为什么它不起作用。我知道这可能是我刚刚错过的一些小东西,但非常感谢任何帮助。