码迷,mamicode.com
首页 > 编程语言 > 详细

多线程-传统定时任务

时间:2017-12-27 14:12:13      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:schedule   system   over   lis   rgs   pos   ide   bin   cond   

package com.thread.timer;

import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

/**
 * 间隔2执行一次再隔4秒执行一次
 * 
 *
 */
public class TraditionalTimerTest {

    public static void main(String[] args) throws InterruptedException {
        Timer timer = new Timer();
        long cur = System.currentTimeMillis();
        timer.schedule(new MyTimerTask(), 2000);
        while (true) {
            System.out.println(new Date().getSeconds());
            Thread.sleep(1000);
        }
    }

}

class MyTimerTask extends TimerTask {
    private static int count = 0;

    @Override
    public void run() {
        count = (count + 1) % 2;
        // TODO Auto-generated method stub
        System.out.println("bombing!!");
        
        new Timer().schedule(new MyTimerTask(), 2000+2000*count);
    }

}

 

多线程-传统定时任务

标签:schedule   system   over   lis   rgs   pos   ide   bin   cond   

原文地址:https://www.cnblogs.com/newlangwen/p/8124965.html

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