`
csqiweikai
  • 浏览: 9134 次
  • 性别: Icon_minigender_1
  • 来自: 成都
文章分类
社区版块
存档分类
最新评论

游戏定时器 Timer,TimerTaskTest (转)

 
阅读更多
在我们编程过程中如果需要执行一些简单的定时任务,无须做复杂的控制,我们可以考虑使用JDK中的Timer定时任务来实现。下面LZ就其原理、实例以及Timer缺陷三个方面来解析Java Timer定时器。

一、简介
在java中一个完整定时任务需要由Timer、TimerTask两个类来配合完成。 API中是这样定义他们的,Timer:一种工具,线程用其安排以后在后台线程中执行的任务。可安排任务执行一次,或者定期重复执行。由TimerTask:Timer 安排为一次执行或重复执行的任务。我们可以这样理解Timer是一种定时器工具,用来在一个后台线程计划执行指定任务,而TimerTask一个抽象类,它的子类代表一个可以被Timer计划的任务。

Timer类

在工具类Timer中,提供了四个构造方法,每个构造方法都启动了计时器线程,同时Timer类可以保证多个线程可以共享单个Timer对象而无需进行外部同步,所以Timer类是线程安全的。但是由于每一个Timer对象对应的是单个后台线程,用于顺序执行所有的计时器任务,一般情况下我们的线程任务执行所消耗的时间应该非常短,但是由于特殊情况导致某个定时器任务执行的时间太长,那么他就会“独占”计时器的任务执行线程,其后的所有线程都必须等待它执行完,这就会延迟后续任务的执行,使这些任务堆积在一起,具体情况我们后面分析。

当程序初始化完成Timer后,定时任务就会按照我们设定的时间去执行,Timer提供了schedule方法,该方法有多中重载方式来适应不同的情况,如下:

schedule(TimerTask task, Date time):安排在指定的时间执行指定的任务。

schedule(TimerTask task, Date firstTime, long period) :安排指定的任务在指定的时间开始进行重复的固定延迟执行。

schedule(TimerTask task, long delay) :安排在指定延迟后执行指定的任务。

schedule(TimerTask task, long delay, long period) :安排指定的任务从指定的延迟后开始进行重复的固定延迟执行。

同时也重载了scheduleAtFixedRate方法,scheduleAtFixedRate方法与schedule相同,只不过他们的侧重点不同,区别后面分析。

scheduleAtFixedRate(TimerTask task, Date firstTime, long period):安排指定的任务在指定的时间开始进行重复的固定速率执行。

scheduleAtFixedRate(TimerTask task, long delay, long period):安排指定的任务在指定的延迟后开始进行重复的固定速率执行。

TimerTask

TimerTask类是一个抽象类,由Timer 安排为一次执行或重复执行的任务。它有一个抽象方法run()方法,该方法用于执行相应计时器任务要执行的操作。因此每一个具体的任务类都必须继承TimerTask,然后重写run()方法。

另外它还有两个非抽象的方法:

boolean cancel():取消此计时器任务。

long scheduledExecutionTime():返回此任务最近实际执行的安排执行时间。

二、实例
2.1、指定延迟时间执行定时任务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

public class TimerTest01 {

    Timer timer;

    public TimerTest01(int time){

        timer = new Timer();

        timer.schedule(new TimerTaskTest01(), time * 1000);

    }

        public static void main(String[] args) {

        System.out.println("timer begin....");

        new TimerTest01(3);

    }
}

public class TimerTaskTest01 extends TimerTask{

    public void run() {

       System.out.println("Time's up!!!!");

    }
}
运行结果:

首先打印:timer begin....3秒后打印:Time's up!!!!
2.2、在指定时间执行定时任务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

public class TimerTest02 {

    Timer timer;

        public TimerTest02(){

        Date time = getTime();

        System.out.println("指定时间time=" + time);

        timer = new Timer();

        timer.schedule(new TimerTaskTest02(), time);

    }

        public Date getTime(){

        Calendar calendar = Calendar.getInstance();

        calendar.set(Calendar.HOUR_OF_DAY, 11);

        calendar.set(Calendar.MINUTE, 39);

        calendar.set(Calendar.SECOND, 00);

        Date time = calendar.getTime();

                return time;

    }

        public static void main(String[] args) {

        new TimerTest02();

    }
}

public class TimerTaskTest02 extends TimerTask{

    @Override  

public void run() {

        System.out.println("指定时间执行线程任务...");

    }
}
当时间到达11:39:00时就会执行该线程任务,当然大于该时间也会执行!!执行结果为:

指定时间time=Tue Jun 10 11:39:00 CST 2014指定时间执行线程任务...
2.3、在延迟指定时间后以指定的间隔时间循环执行定时任务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

public class TimerTest03 {

    Timer timer;

        public TimerTest03(){

        timer = new Timer();

        timer.schedule(new TimerTaskTest03(), 1000, 2000);

    }

        public static void main(String[] args) {

        new TimerTest03();

    }
}

public class TimerTaskTest03 extends TimerTask{

    @Override  

public void run() {

       Date date = new Date(this.scheduledExecutionTime());

        System.out.println("本次执行该线程的时间为:" + date);

    }
}
运行结果:

1

本次执行该线程的时间为:Tue Jun 10 21:19:47 CST 2014本次执行该线程的时间为:Tue Jun 10 21:19:49 CST 2014本次执行该线程的时间为:Tue Jun 10 21:19:51 CST 2014本次执行该线程的时间为:Tue Jun 10 21:19:53 CST 2014本次执行该线程的时间为:Tue Jun 10 21:19:55 CST 2014本次执行该线程的时间为:Tue Jun 10 21:19:57 CST 2014.................
对于这个线程任务,如果我们不将该任务停止,他会一直运行下去。

对于上面三个实例,LZ只是简单的演示了一下,同时也没有讲解scheduleAtFixedRate方法的例子,其实该方法与schedule方法一样!

2.4、分析schedule和scheduleAtFixedRate
1、schedule(TimerTask task, Date time)、schedule(TimerTask task, long delay)

对于这两个方法而言,如果指定的计划执行时间scheduledExecutionTime<= systemCurrentTime,则task会被立即执行。scheduledExecutionTime不会因为某一个task的过度执行而改变。

2、schedule(TimerTask task, Date firstTime, long period)、schedule(TimerTask task, long delay, long period)

这两个方法与上面两个就有点儿不同的,前面提过Timer的计时器任务会因为前一个任务执行时间较长而延时。在这两个方法中,每一次执行的task的计划时间会随着前一个task的实际时间而发生改变,也就是scheduledExecutionTime(n+1)=realExecutionTime(n)+periodTime。也就是说如果第n个task由于某种情况导致这次的执行时间过程,最后导致systemCurrentTime>= scheduledExecutionTime(n+1),这是第n+1个task并不会因为到时了而执行,他会等待第n个task执行完之后再执行,那么这样势必会导致n+2个的执行实现scheduledExecutionTime放生改变即scheduledExecutionTime(n+2) = realExecutionTime(n+1)+periodTime。所以这两个方法更加注重保存间隔时间的稳定。

3、scheduleAtFixedRate(TimerTask task, Date firstTime, long period)、scheduleAtFixedRate(TimerTask task, long delay, long period)

在前面也提过scheduleAtFixedRate与schedule方法的侧重点不同,schedule方法侧重保存间隔时间的稳定,而scheduleAtFixedRate方法更加侧重于保持执行频率的稳定。为什么这么说,原因如下。在schedule方法中会因为前一个任务的延迟而导致其后面的定时任务延时,而scheduleAtFixedRate方法则不会,如果第n个task执行时间过长导致systemCurrentTime>= scheduledExecutionTime(n+1),则不会做任何等待他会立即执行第n+1个task,所以scheduleAtFixedRate方法执行时间的计算方法不同于schedule,而是scheduledExecutionTime(n)=firstExecuteTime +n*periodTime,该计算方法永远保持不变。所以scheduleAtFixedRate更加侧重于保持执行频率的稳定。

三、Timer的缺陷
3.1、Timer的缺陷
Timer计时器可以定时(指定时间执行任务)、延迟(延迟5秒执行任务)、周期性地执行任务(每隔个1秒执行任务),但是,Timer存在一些缺陷。首先Timer对调度的支持是基于绝对时间的,而不是相对时间,所以它对系统时间的改变非常敏感。其次Timer线程是不会捕获异常的,如果TimerTask抛出的了未检查异常则会导致Timer线程终止,同时Timer也不会重新恢复线程的执行,他会错误的���为整个Timer线程都会取消。同时,已经被安排单尚未执行的TimerTask也不会再执行了,新的任务也不能被调度。故如果TimerTask抛出未检查的异常,Timer将会产生无法预料的行为。

1、Timer管理时间延迟缺陷

前面Timer在执行定时任务时只会创建一个线程任务,如果存在多个线程,若其中某个线程因为某种原因而导致线程任务执行时间过长,超过了两个任务的间隔时间,会发生一些缺陷:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

public class TimerTest04 {

    private Timer timer;

    public long start;

           public TimerTest04(){

        this.timer = new Timer();

        start = System.currentTimeMillis();

    }

        public void timerOne(){

        timer.schedule(new TimerTask() {

            public void run() {

                System.out.println("timerOne invoked ,the time:" + (System.currentTimeMillis() - start));

                try {

                   Thread.sleep(4000);

    //线程休眠3000

                }

catch (InterruptedException e) {

                    e.printStackTrace();

                }

            }

        }, 1000);

    }

        public void timerTwo(){

        timer.schedule(new TimerTask() {

            public void run() {

               System.out.println("timerOne invoked ,the time:" + (System.currentTimeMillis() - start));

            }

        }, 3000);

    }

        public static void main(String[] args) throws Exception {

        TimerTest04 test = new TimerTest04();

                test.timerOne();

        test.timerTwo();

   }
}
按照我们正常思路,timerTwo应该是在3s后执行,其结果应该是:

timerOne invoked ,the time:1001timerOne invoked ,the time:3001
但是事与愿违,timerOne由于sleep(4000),休眠了4S,同时Timer内部是一个线程,导致timeOne所需的时间超过了间隔时间,结果:

timerOne invoked ,the time:1000timerOne invoked ,the time:5000
2、Timer抛出异常缺陷

如果TimerTask抛出RuntimeException,Timer会终止所有任务的运行。如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

public class TimerTest04 {

    private Timer timer;

        public TimerTest04(){

        this.timer = new Timer();

    }

        public void timerOne(){

        timer.schedule(new TimerTask() {

            public void run() {

                throw new RuntimeException();

            }

        }, 1000);

    }

        public void timerTwo(){

        timer.schedule(new TimerTask() {

                        public void run() {

                System.out.println("我会不会执行呢??");

           }

        }, 1000);

    }

        public static void main(String[] args) {

        TimerTest04 test = new TimerTest04();

        test.timerOne();

        test.timerTwo();

    }
}
运行结果:timerOne抛出异常,导致timerTwo任务终止。

1

Exception in thread "Timer-0" java.lang.RuntimeException    at com.chenssy.timer.TimerTest04$1.run(TimerTest04.java:25)    at java.util.TimerThread.mainLoop(Timer.java:555)    at java.util.TimerThread.run(Timer.java:505)
对于Timer的缺陷,我们可以考虑 ScheduledThreadPoolExecutor 来替代。Timer是基于绝对时间的,对系统时间比较敏感,而ScheduledThreadPoolExecutor 则是基于相对时间;Timer是内部是单一线程,而ScheduledThreadPoolExecutor内部是个线程池,所以可以支持多个任务并发执行。

3.2、用ScheduledExecutorService替代Timer
1、解决问题一:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

public class ScheduledExecutorTest {

    private  ScheduledExecutorService scheduExec;

        public long start;

        ScheduledExecutorTest(){

        this.scheduExec =  Executors.newScheduledThreadPool(2);

          this.start = System.currentTimeMillis();

    }

        public void timerOne(){

        scheduExec.schedule(new Runnable() {

            public void run() {

                System.out.println("timerOne,the time:" + (System.currentTimeMillis() - start));

                try {

                    Thread.sleep(4000);

                }

catch (InterruptedException e) {

                    e.printStackTrace();

               }

            }

        },1000,TimeUnit.MILLISECONDS);

    }

        public void timerTwo(){

        scheduExec.schedule(new Runnable() {

           public void run() {

               System.out.println("timerTwo,the time:" + (System.currentTimeMillis() - start));

            }

        },2000,TimeUnit.MILLISECONDS);

    }

        public static void main(String[] args) {

        ScheduledExecutorTest test = new ScheduledExecutorTest();

        test.timerOne();

        test.timerTwo();

    }
}
运行结果:

timerOne,the time:1003timerTwo,the time:2005
2、解决问题二

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

public class ScheduledExecutorTest {

    private  ScheduledExecutorService scheduExec;

        public long start;

        ScheduledExecutorTest(){

        this.scheduExec =  Executors.newScheduledThreadPool(2);

          this.start = System.currentTimeMillis();

    }

        public void timerOne(){

        scheduExec.schedule(new Runnable() {

            public void run() {

                throw new RuntimeException();

            }

        },1000,TimeUnit.MILLISECONDS);

    }

        public void timerTwo(){

        scheduExec.scheduleAtFixedRate(new Runnable() {

            public void run() {

                System.out.println("timerTwo invoked .....");

            }

       },2000,500,TimeUnit.MILLISECONDS);

    }

        public static void main(String[] args) {

       ScheduledExecutorTest test = new ScheduledExecutorTest();

       test.timerOne();

       test.timerTwo();

    }
}
运行结果:

1
timerTwo invoked .....timerTwo invoked .....timerTwo invoked .....timerTwo invoked .....timerTwo invoked .....timerTwo invoked .....timerTwo invoked .....timerTwo invoked .....timerTwo invoked .............................
参考文献:http://blog.csdn.net/lmj623565791/article/details/27109467

转自:http://www.importnew.com/19573.html
分享到:
评论

相关推荐

    Android中定时器Timer和TimerTask的启动,停止,暂停,继续等操作

    下面是一个在Android中使用定时器Timer和TimerTask的启动,停止,暂停,继续等操作的demo。 需要注意的问题主要有两点: 1、Timer和TimerTask在调用cancel()取消后不能再执行 schedule语句 2、只能在UI主线程中更新...

    包含了STM32互补输出和TIM2作为从定时器,Timer1而作为另一个定时器Timer2的预分频器,进行计数

    在本主题中,我们将探讨如何利用STM32的互补输出功能以及TIM2作为从定时器,同时让Timer1作为Timer2的预分频器,以实现复杂的计数操作。 首先,STM32的互补输出功能是其在电机控制和其他需要精确脉冲宽度调制(PWM...

    TMS320C6748 DSP视频教程-12-2-定时器 Timer.rar

    《TMS320C6748 DSP视频教程——定时器Timer详解》 在数字信号处理领域,TMS320C6748是一款高性能的数字信号处理器(DSP),广泛应用于音频、视频和通信系统。在这些系统中,定时器是不可或缺的组件,用于精确控制...

    TIA博途中编写的定时器Timer为什么不工作?.docx

    在TIA博途中,定时器Timer是自动化编程中不可或缺的一部分,它们用于实现延时操作、周期性任务或者根据设定的时间间隔触发某些功能。然而,有时我们可能会遇到定时器不工作的现象,这通常是由多种因素引起的。针对...

    vc 定时器 Timer 多媒体定时器 毫秒 ms

    在多媒体应用中,比如游戏开发、音频播放或视频编码,毫秒级的定时器至关重要。例如,在音频播放中,多媒体定时器可以用来确保每个采样点在正确的时间播放,从而保证音质的连续性。 总结,VC++中的定时器机制,尤其...

    C#定时器(Timer)

    C#定时器(Timer)是.NET框架中一个非常重要的组件,它允许开发者在特定的时间间隔内执行特定的代码块,从而实现周期性的任务。在Windows应用程序、服务或控制台程序中,C#定时器常常被用来创建后台任务、监控、更新...

    spring定时器Timer

    spring定时器Timer.rarspring定时器Timer.rarspring定时器Timer.rarspring定时器Timer.rarspring定时器Timer.rarspring定时器Timer.rar

    Java定时器Timer简述.pdf

    Java定时器Timer是Java编程语言中用于计划执行任务的一种工具类。Timer类主要提供了定时任务的安排执行,对于需要在指定时间后、或者以固定周期重复执行任务的场景非常有用。本文档中介绍的Timer类的实现以及如何...

    高精度定时器Timer

    在IT领域,定时器是一种非常重要的工具,尤其在实时系统、游戏开发、科学计算和测试环境中,对时间的精确控制是必不可少的。标题中的“高精度定时器Timer”指的是能够提供毫秒级甚至微秒级精度的定时服务,相较于...

    C#使用定时器Timer

    ### C# 使用定时器 Timer 的知识点 #### 一、引言 在开发应用程序时,有时我们需要执行周期性的任务,例如每隔一段时间更新数据、发送心跳包等。为了实现这些功能,C# 提供了多种定时器类,其中 `System.Timers....

    java定时器timer制作

    Java中定时器(Timer)主要用于执行周期性的任务。通过`java.util.Timer`类,可以创建一个定时器对象,该对象负责调度事件。定时器可以用来执行两种类型的定时任务:一次性任务和周期性任务。 #### 一次性任务 一次...

    定时器timer.rar

    在嵌入式系统开发中,定时器(Timer)是一个至关重要的组成部分,特别是在基于ARM7处理器的平台上。定时器不仅用于精确的时间控制,还扮演着事件调度、中断触发等多种角色。本实验资料“定时器timer.rar”是专为学生...

    5 Timer2定时器中断_c8051f340_TIMER2定时器中断_

    下面我们将详细探讨TIMER2定时器中断的相关知识点。 1. TIMER2结构与功能: TIMER2是C8051F340中的一个16位定时器,它可以工作在多种模式下,如自由运行、波特率发生器、捕获、比较以及脉宽调制(PWM)。它包含两个...

    物联网项目实战开发之基于STM32的定时器TIMER中断测试代码程序

    stm32f103 定时器timer代码: 1、通过启用单片机TIMER3,开始计数。 2、TIMER计数器配置为1秒中断一次,进入中断之后,LED灯亮灭一次。 3、代码使用KEIL开发,当前在STM32F103C8T6运行,如果是STM32F103其他型号芯片...

    自己编写的Delphi组件定时器Timer,内支持线程,不会像D原生那样卡顿及界面.

    在IT行业中,开发人员经常需要使用到定时器(Timer)组件来实现特定的延时或周期性任务。在Delphi编程环境中,系统自带的TTimer组件虽然方便,但在某些复杂场景下,例如需要在定时器触发事件时执行耗时操作,可能会...

    定时器Timer实例.rar

    这个`定时器Timer实例.rar`压缩包可能包含了演示如何使用这两个类的示例代码。下面将详细介绍`Timer`和`TimerTask`,以及如何在实际应用中使用它们。 1. **Timer类**: `java.util.Timer`是一个调度类,它允许我们...

    继承自BCB的定时器Timer

    【标题】"继承自BCB的定时器Timer"涉及到的核心知识点是C++ Builder(简称BCB)中的TTimer组件和自定义定时器的实现。TTimer是BCB中用于实现定时触发事件的一个控件,它在VCL(Visual Component Library)库中提供,...

    GD32 Timer定时器的使用

    GD32F330系列单片机是GD32微控制器家族中的一员,它集成了丰富的外设接口,其中Timer(定时器)是其重要组成部分。定时器在嵌入式系统中扮演着核心角色,用于执行各种时间相关的任务,如周期性事件处理、延时操作、...

    android定时器Timer实例

    这就是定时器(Timer)的作用。本篇文章将详细探讨Android中的Timer类以及如何使用它来实现定时任务。 `Timer`类是Java.util包下的一个工具类,它提供了调度任务在未来某个时间点执行的功能。虽然在Android中,我们...

    C++定时器Timer在项目中的使用方法

    C++定时器Timer在项目中的使用方法 C++定时器Timer在项目中的使用方法是指在项目中使用C++语言实现定时器的使用方法。定时器是计算机编程中的一种机制,用于在特定的时间间隔内执行特定的任务。本文将详细介绍C++...

Global site tag (gtag.js) - Google Analytics