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.
特定のアルゴリズムに従って移動するオブジェクトがあり、5 秒ごとに別の方法で移動させたいと考えています。タイマーを使用してそれを行うにはどうすればよいですか?
これを見る
Timer time = new Timer(); time.scheduleAtFixedRate(new TimerTask(){ public void run(){ //Do Stuff } }, 0, 1000 * 5);