Java中Timer的使用

本文对比了Java中Timer类的schedule与scheduleAtFixedRate方法的区别,详细解释了这两种方法的执行逻辑,并介绍了Timer内部实现机制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Timer为定时周期性执行调度性能没有concurrent包下的高,不过原理还是需要了解下的,手续看下使用:

 

Timer timer = new Timer("Fetch thread");
timer.scheduleAtFixedRate(new TimerTask() {
	@Override
	public void run() {
		
		try {
			Thread.sleep(10000);
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		System.out.println("**Fetch thread1 run**"
				+ this.scheduledExecutionTime());

	}
}, 1000, 10);
timer.schedule(new TimerTask() {
	@Override
	public void run() {
		try {
			Thread.sleep(10000);
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		System.out.println("**Fetch thread2 run**"
				+ this.scheduledExecutionTime());
	}
}, 1000, 10);

执行打印结果:

 

 

schedule:
**Fetch thread2 run**1387522409123
**Fetch thread2 run**1387522419125
**Fetch thread2 run**1387522429126

scheduleAtFixedRate:
**Fetch thread1 run**1387522551056
**Fetch thread1 run**1387522551066
**Fetch thread1 run**1387522551076

总结:

 

schedule方法:在上次执行结束之后开始按某固定的rate执行

scheduleAtFixedRate方法:在上次执行开始时开始按某固定的rate执行,也就是说不关心上次是否执行完成此次执行就已经开始了so要注意并发。

 

实现原理:

Timer里维护了一个TimerThread,而TimerThread里维护了一个TaskQueue,所有的TimerTask都放在此TaskQueue种,在TimerThread中执行while(ture)通过对TaskQueue的notify wait来实现操作。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值