码迷,mamicode.com
首页 > 其他好文 > 详细

传统定时器

时间:2017-05-25 11:50:51      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:time   new   nts   run   版本   new t   count   div   1.0   

/**
 * 
 * @描述: 传统定时器 .
 * @作者: 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();
            }
        }
    }

 

传统定时器

标签:time   new   nts   run   版本   new t   count   div   1.0   

原文地址:http://www.cnblogs.com/superGG/p/6902234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!