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

定时器

时间:2014-05-04 10:38:17      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   

bubuko.com,布布扣
public class Demo {
    private long time;//间隔的时间
    private Runnable task;//指定的任务
    private boolean flag = true;
    private Thread th = null;//默认为null
    public static void main(String[] args) {
        Demo de=new Demo(2L,new person());
    }
    public Demo(long time, Runnable task) {
        this.time = time;
        this.task = task;
    }
    
    public void start() {
        if(th == null) {
            // 一旦调用了start()方法后,th就不会在是null了。
            th = new Thread(new Runnable() {
                public void run() {
                    while(flag) {
                        task.run();
                        try {
                            Thread.sleep(time);
                        } catch(InterruptedException e) {}
                    }
                }
            });
            th.start();
        } else {
            throw new RuntimeException("定时器已经启动,不能再次启动!");
        }
    }
    
    public void stop() {
        this.flag = false;
    }


}
bubuko.com,布布扣
bubuko.com,布布扣
public class Test {
    public static void main(String[] args) throws InterruptedException {
        MyTimer mt = new MyTimer(2000, new Runnable() {
            public void run() {
                System.out.println("Hello World!");
            }
        });
        mt.start();
        Thread.sleep(10000);
        mt.stop();
    }
}

青春  22:34:17
bubuko.com,布布扣

 

定时器,布布扣,bubuko.com

定时器

标签:style   blog   class   code   java   tar   

原文地址:http://www.cnblogs.com/kedoudejingshen/p/3705739.html

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