传统定时器

Posted 安静

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了传统定时器相关的知识,希望对你有一定的参考价值。

/**
 * 
 * @描述: 传统定时器 .
 * @作者: Wnj .
 * @创建时间: 2017年5月15日 .
 * @版本: 1.0 .
 */
public class TraditionalTimerTest {
    
    private static int count = 0;
    
    public static void main(String[] args) {
        /*        
         *     宿主
         *      new Timer().schedule(new TimerTask() {
                    
                    @Override
                    public void run() {
                        System.out.println("bombing!");
                        
                    }
                    //10秒后开始,间隔3秒执行一次
                }, 10000,3000);*/
        
        class MyTimerTask extends TimerTask {
            
            @Override
            public void run() {
                count = (count + 1) % 2;
                System.out.println("bombing!");
                new Timer().schedule(/*new TimerTask() {
                                     
                                     @Override
                                     public void run() {
                                     System.out.println("bombing!");
                                     }
                                     }*/new MyTimerTask(), 2000 + 2000 * count);
            }
        }
        
        new Timer().schedule(new MyTimerTask(), 2000);
        
        while (true) {
            System.out.println(new Date().getSeconds());
            try {
                Thread.sleep(1000);
            }
            catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }

 

以上是关于传统定时器的主要内容,如果未能解决你的问题,请参考以下文章

前端面试题之手写promise

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

HTML代码片段

HTML代码片段

JAVA多线程提高一:传统线程技术&传统定时器Timer

CPNtools协议建模安全分析---实例变迁标记