Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个小游戏小程序,我希望它等到用户按下spacebar开始,但我不确定最好的方法是什么。这里我写了一个移动盒子的SSCCE。
spacebar
http://pastebin.com/Zq1eMEJ9
任何建议将不胜感激!
希望这可以解决您的问题...
public void keyTyped(KeyEvent evt) { if (evt.getKeyChar() == ' ') { Thread th = new Thread(movingBoxInstance); th.start(); } }