欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

浅谈java定时器的发展历程

程序员文章站 2023-12-09 15:00:03
在开发中,我们经常需要一些周期性的操作,例如每隔几分钟就进行某一项操作。这时候我们就要去设置个定时器,java中最方便、最高效的实现方式是用java.util.timer工...

在开发中,我们经常需要一些周期性的操作,例如每隔几分钟就进行某一项操作。这时候我们就要去设置个定时器,java中最方便、最高效的实现方式是用java.util.timer工具类,再通过调度java.util.timertask任务。

timer是一种工具,线程用其安排以后在后台线程中执行的任务。可安排任务执行一次,或者定期重复执行。实际上是个线程,定时调度所拥有的timertasks。

timertask是一个抽象类,它的子类由timer安排为一次执行或重复执行的任务。实际上就是一个拥有run方法的类,需要定时执行的代码放到run方法体内。

java在jdk1.3中推出了定时器类timer,而后在jdk1.5后由doulea从新开发出了支持多线程的schedulethreadpoolexecutor,从后者的表现来看,可以考虑完全替代timer了。

timer与schedulethreadpoolexecutor对比:

1.timer始于jdk1.3,其原理是利用一个timertask数组当作队列,将所有定时任务添加到此队列里面去。然后启动一个线程,当队列为空时,此线程会阻塞,当队列里面有数据时,线程会去除一个timertask来判断

是否到时间需要运行此任务,如果运行时间小于或等于当前时间时则开始运行任务。由于其单线程的本质,所以会带来几个问题(详细代码在后面):

第一,当我们添加到定时器中的任务比较耗时时,由于此定时器是单线程顺序执行定时器任务,所以会影响后续任务的按时执行。

java代码

//问题一示例: 
m_timer.scheduleatfixedrate(new taskuselongtime(), 1000, 5000); 
m_timer.scheduleatfixedrate(new tasknormal(), 5000, 3000); 
 
运行结果: 
14:44:29: timer is sleeping 10 seconds 
14:44:39: task normal executed 
14:44:39: timer is sleeping 10 seconds 
14:44:49: task normal executed 
14:44:49: task normal executed 
14:44:49: timer is sleeping 10 seconds 
 
结果分析:tasknormal任务无法保证3秒运行一次,其只能等待taskuselongtime运行结束后才可以。 

第二,timer中的线程仅仅会捕获interruptedexception异常,所以如果我们自定义的定时任务里面没有捕获可能出现的异常而导致异常抛出后,

//问题二示例: 
m_timer.schedule(new taskthrowexception(), 1000); 
m_timer.schedule(new tasknormal(), 2000); 
 
运行结果: 
14:47:37: throw exception 
exception in thread "timer-0" java.lang.runtimeexception 
  at timer_test.timertest$taskthrowexception.run(timertest.java:85) 
  at java.util.timerthread.mainloop(timer.java:512) 
  at java.util.timerthread.run(timer.java:462) 
 
结果分析: 
当前一个任务抛出异常后,后面的tasknormal任务无法继续运行 

会导致我们的timer线程停止,从而另后续的任务无法执行。

第三,其无法处理多个同时发生的定时任务

//问题三示例: 
m_timer.scheduleatfixedrate(new taskuselongtime("timer1"), 1000, 15000); 
m_timer.scheduleatfixedrate(new taskuselongtime("timer2"), 1000, 15000); 
 
运行结果: 
14:50:16: timer1 is sleeping 10 seconds 
14:50:26: timer2 is sleeping 10 seconds 
14:50:36: timer2 is sleeping 10 seconds 
 
结果分析: 
我的启动时间均是1秒以后,但是timer1和timer2启动的时间明显不一致 

代码示例:

package timer_test;
import java.text.simpledateformat;
import java.util.date;
import java.util.timer;
import java.util.timertask;
public class timertest 
{
	private final timer m_timer = new timer();
	public static void main(string[] args) 
	  {
		new timertest().test();
	}
	public void test() 
	  {
		//问题一示例: 
		m_timer.scheduleatfixedrate(new taskuselongtime(), 1000, 5000);
		m_timer.scheduleatfixedrate(new tasknormal(), 5000, 3000);
		//问题二示例: 
		//   m_timer.schedule(new taskthrowexception(), 1000); 
		//   m_timer.schedule(new tasknormal(), 2000); 
		//问题三示例: 
		//   m_timer.scheduleatfixedrate(new taskuselongtime("timer1"), 1000, 5000); 
		//   m_timer.scheduleatfixedrate(new taskuselongtime("timer2"), 1000, 5000);
	}
	private class taskuselongtime extends timertask 
	  {
		private string m_taskname = "timer";
		public taskuselongtime(){
		}
		public taskuselongtime(string taskname) 
		    {
			m_taskname = taskname;
		}
		@override 
		    public void run() 
		    {
			try 
			      {
				system.out.println(getcurrenttime()+": "+m_taskname+" is sleeping 10 seconds");
				thread.sleep(10000);
			}
			catch (interruptedexception e) 
			      {
			}
		}
	}
	private class tasknormal extends timertask 
	  {
		@override 
		    public void run() 
		    {
			system.out.println(getcurrenttime()+": task normal executed");
		}
	}
	private class taskthrowexception extends timertask 
	  {
		@override 
		    public void run() 
		    {
			system.out.println(getcurrenttime()+": throw exception");
			throw new runtimeexception();
		}
	}
	private string getcurrenttime() 
	  {
		return new simpledateformat("hh:mm:ss").format(new date());
	}
}

2.schedulethreadpoolexecutor

schedulethreadpoolexecutor始于jdk1.5,是由doulea先生编写的,其利用threadpoolexecutor和delayqueue巧妙的结合完成了多线程定时器的实现,解决了timer中由于单线程而导致的上述三个缺陷。

问题一中的问题是因为单线程顺序执行导致后续任务无法按时完成,我们看到多线程可以很容易的解决此问题,同时我们注意到taskuselongtime的执行时间为10s(请看后续代码),我们定时任务间隔是5秒,但是从结果中发现我们的任务执行间隔却是10秒,所以我们可以判断schedulethreadpoolexecutor是采用每线程每任务的模式工作的。

//问题一: 
m_timer.scheduleatfixedrate(new taskuselongtime(), 1000, 5000, timeunit.milliseconds); 
m_timer.scheduleatfixedrate(new tasknormal(), 1000, 5000, timeunit.milliseconds); 
 
运行结果: 
14:54:37: task normal executed 
14:54:37: timer is sleeping 10 seconds 
14:54:42: task normal executed 
14:54:47: task normal executed 
14:54:47: timer is sleeping 10 seconds 
14:54:52: task normal executed 

问题二中我们发现当抛出异常的任务执行后不影响其他任务的运行,同时我们发现在运行结果里面没有将我们的异常抛出,这是因为schedulethreadpoolexecutor类在执行完定时任务后会返回一个scheduledfuture运行结果,不论结果是顺利完成还是有异常均会保存在这里。

//问题二: 
m_timer.scheduleatfixedrate(new taskthrowexception(), 1000, 5000, timeunit.milliseconds); 
m_timer.scheduleatfixedrate(new tasknormal(), 1000, 5000, timeunit.milliseconds); 
 
运行结果: 
14:58:36: throw exception 
14:58:36: task normal executed 
14:58:41: task normal executed 
14:58:46: task normal executed 
14:58:51: task normal executed 
14:58:56: task normal executed 

问题三由于是多线程所以我们可以保证我们的定时任务可以同时执行

//问题三: 
m_timer.scheduleatfixedrate(new taskuselongtime("timer1"), 1000, 5000, timeunit.milliseconds); 
m_timer.scheduleatfixedrate(new taskuselongtime("timer2"), 1000, 5000, timeunit.milliseconds); 
 
运行结果: 
15:01:12: timer1 is sleeping 10 seconds 
15:01:12: timer2 is sleeping 10 seconds 
15:01:22: timer2 is sleeping 10 seconds 
15:01:22: timer1 is sleeping 10 seconds 
15:01:32: timer1 is sleeping 10 seconds 
15:01:32: timer2 is sleeping 10 seconds 

详细代码:

package timer_test;
import java.text.simpledateformat;
import java.util.date;
import java.util.concurrent.callable;
import java.util.concurrent.scheduledthreadpoolexecutor;
import java.util.concurrent.timeunit;
public class schedulethreadpoolexecutortest 
{
	private final scheduledthreadpoolexecutor m_timer = new scheduledthreadpoolexecutor(10);
	public static void main(string[] args) 
	  {
		schedulethreadpoolexecutortest timertest = new schedulethreadpoolexecutortest();
		timertest.test();
		try 
		    {
			thread.sleep(100000);
		}
		catch (interruptedexception e) 
		    {
		}
		finally 
		    {
			timertest.shutdown();
		}
	}
	public void shutdown() 
	  {
		m_timer.shutdown();
	}
	public void test() 
	  {
		//问题一: 
		//   m_timer.scheduleatfixedrate(new taskuselongtime(), 1000, 5000, timeunit.milliseconds); 
		//   m_timer.scheduleatfixedrate(new tasknormal(), 1000, 5000, timeunit.milliseconds); 
		//问题二: 
		//   m_timer.scheduleatfixedrate(new taskthrowexception(), 1000, 5000, timeunit.milliseconds); 
		//   m_timer.scheduleatfixedrate(new tasknormal(), 1000, 5000, timeunit.milliseconds); 
		//问题三: 
		m_timer.scheduleatfixedrate(new taskuselongtime("timer1"), 1000, 5000, timeunit.milliseconds);
		m_timer.scheduleatfixedrate(new taskuselongtime("timer2"), 1000, 5000, timeunit.milliseconds);
	}
	private class taskuselongtime implements callable<integer>, runnable 
	  {
		private string m_taskname = "timer";
		private taskuselongtime(){
		}
		private taskuselongtime(string taskname) 
		    {
			m_taskname = taskname;
		}
		public void run() 
		    {
			try 
			      {
				system.out.println(getcurrenttime()+": "+m_taskname+" is sleeping 10 seconds");
				thread.sleep(10000);
			}
			catch (interruptedexception e) 
			      {
			}
		}
		public integer call() throws exception 
		    {
			run();
			return 0;
		}
	}
	@suppresswarnings("unused") 
	  private class tasknormal implements callable<integer>, runnable 
	  {
		public integer call() throws exception 
		    {
			run();
			return 0;
		}
		public void run() 
		    {
			system.out.println(getcurrenttime()+": task normal executed");
		}
	}
	@suppresswarnings("unused") 
	  private class taskthrowexception implements callable<integer>, runnable 
	  {
		public integer call() throws exception 
		    {
			system.out.println(getcurrenttime()+": throw exception");
			throw new runtimeexception();
		}
		public void run() 
		    {
			system.out.println(getcurrenttime()+": throw exception");
			throw new runtimeexception();
		}
	}
	private string getcurrenttime() 
	  {
		return new simpledateformat("hh:mm:ss").format(new date());
	}
}

总结

以上就是本文关于浅谈java定时器的发展历程的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:

java实现一个简单的定时器代码解析

java多线程定时器timer原理及实现

如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!