Java多线程与并发库高级应用-传统定时器技术回顾

Posted wq3435

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java多线程与并发库高级应用-传统定时器技术回顾相关的知识,希望对你有一定的参考价值。

传统定时器技术回顾(jdk1.5以前)

   

public class TraditionalTimerTest {
    static int count = 0;
    public static void main(String[] args) {
        
        //10秒后开始执行,每隔3秒执行一次
        new Timer().schedule(new TimerTask() {
            
            @Override
            public void run() {
                System.out.println("bombing...");
                
            }
        }, 10000,3000);
        
        /**
         *  需求:2秒,4秒间隔执行定时任务
         */
        class MyTimerTask extends TimerTask{
            @Override
            public void run() {
                count = (count+1)%2;
                System.out.println("bombing...");
                new Timer().schedule(new MyTimerTask(), 2000 + 2000*count);
            }
        }
        new Timer().schedule(new MyTimerTask(), 2000);
        
        
        while(true){
            try {
                System.out.println(new Date().getSeconds());
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        
        //quartz  周一~周五执行任务,周六日不执行
    }
}

 

以上是关于Java多线程与并发库高级应用-传统定时器技术回顾的主要内容,如果未能解决你的问题,请参考以下文章

(黑马Java多线程与并发库高级应用)01 传统线程技术回顾

Java多线程与并发库高级应用

Java多线程与并发库高级应用-传统线程互斥技术

Java高新技术——多线程与并发库(上)

Java高新技术——多线程与并发库(上)

(黑马Java多线程与并发库高级应用)04 传统线程同步通信技术