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(); } }