我有我的代码。
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == 37){
personx -=2;
}
if (e.getKeyCode() == 38){
persony -=2;
}
if (e.getKeyCode() == 39){
personx +=2;
}
if (e.getKeyCode() == 40){
persony +=2;
}
try {
Thread.sleep((long) 0.04);
} catch (InterruptedException e1) {
e1.printStackTrace();
}
代码不会移动角色。我检查了它是否被调用并写道:
public void keyPressed(KeyEvent e) {
System.out.println("Test");
}
但它没有打印测试。