我正在编写一个类似炸弹人的游戏,但我的 KeyListener 有问题。
\n\n问题是,当游戏运行时,KeyListener 不会响应,但是当它不运行时,它会执行我告诉他的操作。
\n\n这是我的代码
\n\npublic class direction extends Canvas implements KeyListener {\n\nstatic float bmx = 35;\nstatic float bmy = 35;\nstatic float v = 0.03f;\n\npublic static BufferStrategy strategie;\npublic static BufferedImage image;\n\npublic direction() { //pas s\xc3\xbbr de ce que \xc3\xa7a fait\n GraphicsEnvironment ge = //on m\'a dit de le mettre \n GraphicsEnvironment.getLocalGraphicsEnvironment(); //le programme marche tr\xc3\xa8s bien sans\n GraphicsDevice gd = ge.getDefaultScreenDevice();\n GraphicsConfiguration gc = gd.getDefaultConfiguration();\n image = gc.createCompatibleImage(700, 700);\n setSize(700, 700);\n\n}\n\n static boolean gauche;\n static boolean …Run Code Online (Sandbox Code Playgroud)