在Timer和ScheduledExecutorService间决择

java.util.Timer计时器有管理任务延迟执行("如1000ms后执行任务")以及周期性执行("如每500ms执行一次该任务")。但是,Timer存在一些缺陷,因此你应该考虑使用ScheduledThreadPoolExecutor作为代替品,Timer对调度的支持是基于绝对时间,而不是相对时间的,由此任务对系统时钟的改变是敏感的;ScheduledThreadExecutor只支持相对时间。

    Timer的另一个问题在于,如果TimerTask抛出未检查的异常,Timer将会产生无法预料的行为。Timer线程并不捕获异常,所以TimerTask抛出的未检查的异常会终止timer线程。这种情况下,Timer也不会再重新恢复线程的执行了;它错误的认为整个Timer都被取消了。此时,已经被安排但尚未执行的TimerTask永远不会再执行了,新的任务也不能被调度了。

 测试Timer的例子

 

Java代码   收藏代码
  1. package com.bill99.test;  
  2.   
  3. import java.util.Timer;  
  4. import java.util.TimerTask;  
  5.   
  6. public class TimerTest {  
  7.     private Timer timer = new Timer();  
  8.     //启动计时器  
  9.     public void lanuchTimer(){  
  10.         timer.schedule(new TimerTask(){  
  11.             public void run() {  
  12.                 throw new RuntimeException();  
  13.             }  
  14.         }, 1000*3500);  
  15.     }  
  16.     //向计时器添加一个任务  
  17.     public void addOneTask(){  
  18.         timer.schedule(new TimerTask(){  
  19.             public void run(){  
  20.                 System.out.println("hello world");  
  21.             }  
  22.         }, 1000*1,1000*5);  
  23.     }  
  24.       
  25.     public static void main(String[] args) throws Exception {  
  26.         TimerTest test = new TimerTest();  
  27.         test.lanuchTimer();  
  28.         Thread.sleep(1000*5);//5秒钟之后添加一个新任务  
  29.         test.addOneTask();  
  30.     }  
  31. }  

 运行该程序,Timer会抛出一个RumtimeExceptionjava.lang.IllegalStateException:Timer already cancelled.

常言道,真是祸不单行,Timer还将它的问题传染给下一个倒霉的调用者,这个调用者原本试图提交一个TimerTask的,你可能希望程序会一直运行下去,然而实际情况如程序所示5秒钟后就中止了,还伴随着一个异常,异常的消息是"Timer already cancelled"。ScheduledThreadPoolExector妥善地处理了这个异常的任务,所以说在java5.0或更高的JDK中,几乎没有理由再使用Timer了。

 用ScheduledThreadPoolExector改进后的例子

 

Java代码   收藏代码
  1. package com.bill99.test;  
  2.   
  3. import java.util.concurrent.Executors;  
  4. import java.util.concurrent.ScheduledExecutorService;  
  5. import java.util.concurrent.TimeUnit;  
  6.   
  7. public class ScheduledExecutorTest {  
  8.     //线程池能按时间计划来执行任务,允许用户设定计划执行任务的时间,int类型的参数是设定  
  9.     //线程池中线程的最小数目。当任务较多时,线程池可能会自动创建更多的工作线程来执行任务  
  10.     //此处用Executors.newSingleThreadScheduledExecutor()更佳。
  11.     public ScheduledExecutorService scheduExec = Executors.newScheduledThreadPool(1);  
  12.     //启动计时器  
  13.     public void lanuchTimer(){  
  14.         Runnable task = new Runnable() {  
  15.             public void run() {  
  16.                 throw new RuntimeException();  
  17.             }  
  18.         };  
  19.         scheduExec.scheduleWithFixedDelay(task, 1000*51000*10, TimeUnit.MILLISECONDS);  
  20.     }  
  21.     //添加新任务  
  22.     public void addOneTask(){  
  23.         Runnable task = new Runnable() {  
  24.             public void run() {  
  25.                 System.out.println("welcome to china");  
  26.             }  
  27.         };  
  28.         scheduExec.scheduleWithFixedDelay(task, 1000*11000, TimeUnit.MILLISECONDS);  
  29.     }  
  30.       
  31.     public static void main(String[] args) throws Exception {  
  32.         ScheduledExecutorTest test = new ScheduledExecutorTest();  
  33.         test.lanuchTimer();  
  34.         Thread.sleep(1000*5);//5秒钟之后添加新任务  
  35.         test.addOneTask();  
  36.     }  
  37. }  

 

http://sunnylocus.iteye.com/blog/530969

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值