Home > Java > Java Tutorial > body text

Java timer (Timer, TimerTask) detailed explanation and example code

高洛峰
Release: 2017-01-11 16:14:43
Original
1380 people have browsed it

Java Timer

The two classes used to implement the timer function in JAVA are Timer and TimerTask

The Timer class is a class used to perform tasks. It accepts A TimerTask takes parameters

Timer has two modes for executing tasks. The most commonly used is schedule, which can execute tasks in two ways: 1: at a certain time (Data), 2: at After a fixed time (int delay). Both methods can specify the frequency of task execution. There are two examples in this article, one is simple and the other uses the internal class

1. Simple example

First write a class

public class TimeTest {
public static void main(String[] args) {
   
   Timer timer = new Timer();
   timer.schedule(new MyTask(),1000,2000);
}
Copy after login

and then write a class

public class MyTask extends TimerTask{
 
  @Override
  public void run() {
 System.out.println("开始运行");    
  }
}
Copy after login

This way you can complete a simple timer, but there is another way to combine these two A class is written into a class, which is an internal class.

2. Internal class

public class SerchRun {
 
  protected static void startRun(){
    Timer timer = new Timer();
     TimerTask task =new TimerTask(){
       public void run(){
         System.out.println("开始运行"); //在这写你要调用的方法
       }
     };
   timer.scheduleAtFixedRate(task, new Date(),2000);//当前时间开始起动 每次间隔2秒再启动
   // timer.scheduleAtFixedRate(task, 1000,2000); // 1秒后启动 每次间隔2秒再启动         
   }
   
  public static void main(String[] args) {
   SerchRun.startRun();
  }
}
Copy after login

The difference between schedule and scheduleAtFixedRate is that if the specified start time of execution is before the current system running time , scheduleAtFixedRate will execute the elapsed time as a period, but schedule will not count the elapsed time.

For example:

SimpleDateFormat fTime = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
 Date d1 = fTime.parse("2005/12/30 14:10:00");
  
 t.scheduleAtFixedRate(new TimerTask(){
  public void run()
  {
    System.out.println("this is task you do6");
  }
 },d1,3*60*1000);
Copy after login

The interval is 3 minutes, and the specified start time is 2005/12/30 14:10:00. If I execute this program at 14:17:00, then

this is task you do6   //14:10
this is task you do6   //14:13
this is task you do6   //14:16
Copy after login

will be printed three times immediately and note that the next execution is at 14:19 instead of 14:20. That is to say, timing starts from the specified start time, not from the execution time.

But if the schedule method is used above, the interval is 3 minutes, and the specified start time is 2005/12/30 14:10:00, then if the program is executed at 14:17:00, the program will be executed immediately once. And the next execution time is 14:20, not the period starting from 14:10 (14:19).

Thank you for reading, I hope it can help you, thank you for your support of this site!

For more Java timer (Timer, TimerTask) detailed explanations and example code related articles, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!