首页 > 其他 > 详细

一个有趣的Timer应用

时间:2014-05-23 01:44:05      阅读:477      评论:0      收藏:0      [点我收藏+]

import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

public class TraditionalTimerTest {

	static int count;

	public static void main(String[] args) {

		class MyTimerTask extends TimerTask {

			@Override
			public void run() {
				count = (count + 1) % 2;
				System.out.println("bombing!");
				new Timer().schedule(new MyTimerTask(), 2000 + 2000 * count);

			}
		}

		new Timer().schedule(new MyTimerTask(), 2000);

		while (true) {
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
			System.out.println(new Date().getSeconds());
		}
	}

}

两秒炸一次,四秒炸一次,循环往复。。。



一个有趣的Timer应用,布布扣,bubuko.com

一个有趣的Timer应用

原文:http://blog.csdn.net/ro_wsy/article/details/26489499

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!