您的位置:

Android计时器Timer详解

一、Timer介绍

Timer是Android中的一个计时器类,主要用于在一定时间间隔内执行一些指定的任务。Timer可以用于执行定时任务,如轮询、数据缓存、定时刷新等。

Timer实现了ScheduledExecutorService接口,提供了定期执行任务的功能。它允许我们安排一个任务在延迟一定时间后运行,也可以按照一定的时间间隔重复运行。

二、Timer使用

Timer常用的方法包括schedule()、scheduleAtFixedRate()、cancel()等。

1. schedule()

schedule()方法用于延迟执行任务,以下是schedule()方法的语法:


public void schedule(TimerTask task,long delay)

其中,task为要执行的任务,delay为延迟的毫秒数。

下面是一个简单的示例,该示例会在2秒后输出一条日志:


Timer timer = new Timer();
timer.schedule(new TimerTask() {
    @Override
    public void run() {
        Log.i("TimerTest","schedule example");
    }
},2000);

2. scheduleAtFixedRate()

scheduleAtFixedRate()方法用于按照一定的时间间隔周期性地执行任务,以下是scheduleAtFixedRate()方法的语法:


public void scheduleAtFixedRate(TimerTask task,long delay,long period)

其中,task为要执行的任务,delay为延迟的毫秒数,period为重复执行的时间间隔。

下面是一个简单的示例,该示例会在1秒后开始执行任务,每3秒执行一次,直到该任务被取消:


Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
    @Override
    public void run() {
        Log.i("TimerTest","scheduleAtFixedRate example");
    }
},1000,3000);

3. cancel()

cancel()方法用于取消定时器,如果调用该方法,则定时器不会再执行任务。

下面是一个示例,该示例会在2秒后输出一条日志,并在4秒后取消定时器:


Timer timer = new Timer();
TimerTask task = new TimerTask() {
    @Override
    public void run() {
        Log.i("TimerTest","cancel example");
    }
};
timer.schedule(task,2000);
timer.schedule(new TimerTask() {
    @Override
    public void run() {
        timer.cancel();
    }
},4000);

三、Timer的一些注意点

1. Timer的线程安全问题

Timer在执行任务时是在新线程中进行的,因此多个定时器任务可能会并发地执行,这可能会导致线程安全问题。为了避免这种情况,我们可以使用HandlerThread或者单独的线程来执行定时器任务。

2. Timer的异常处理问题

Timer是在单独的线程中执行任务的,因此如果任务抛出异常,则定时器线程会停止运行。为了避免这种情况,我们可以在定时器任务中加入try-catch语句,或者使用UncaughtExceptionHandler来处理异常。

3. Timer的性能问题

Timer的执行是基于TimerTask的,而TimerTask在执行时会占用一个线程。如果我们同时执行大量的任务,可能会导致线程池被用尽,从而影响系统的性能和稳定性。为了避免这种情况,可以考虑使用ScheduledThreadPoolExecutor。

四、总结

Timer是Android中的一个非常有用的计时器类,它可以用于定期执行任务。在使用Timer时,需要注意线程安全问题、异常处理和性能问题。

下面是完整的代码示例:


Timer timer = new Timer();
timer.schedule(new TimerTask() {
    @Override
    public void run() {
        Log.i("TimerTest","schedule example");
    }
},2000);

timer.scheduleAtFixedRate(new TimerTask() {
   @Override
   public void run() {
       Log.i("TimerTest","scheduleAtFixedRate example");
   }
},1000,3000);

TimerTask task = new TimerTask() {
    @Override
    public void run() {
        Log.i("TimerTest","cancel example");
    }
};
timer.schedule(task,2000);
timer.schedule(new TimerTask() {
    @Override
    public void run() {
        timer.cancel();
    }
},4000);