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

java随笔一(关于定时任务)

时间:2017-09-21 21:47:14      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:schedule   new t   out   hello   cut   rate   print   ini   ring   

public class ThreadTest {

    class MyTask implements Runnable{

        public void run() {
            say();
        }
    }

    public void init(){
        say();
        MyTask myTask = new MyTask();
        ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1);
        executorService.scheduleAtFixedRate(myTask,5,5,TimeUnit.SECONDS);
    }

    public static void say(){
        System.out.println("Hello world");
    }

    public static void main(String[] args)  {
        ThreadTest threadTest = new ThreadTest();
        threadTest.init();
    }
}

  这个程序执行了之后,在运行这个程序后的5秒(scheduleAtFixedRate的第二个参数决定)之后,每5秒(scheduleAtFixedRate的第三个参数决定)执行一个say().

java随笔一(关于定时任务)

标签:schedule   new t   out   hello   cut   rate   print   ini   ring   

原文地址:http://www.cnblogs.com/wnbahmbb/p/7571442.html

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