标签:thread sim 之间 间隔 内容 bsp ice 摘要 single
摘要:运行 main 方法的时候开始进行定时任务,
service.scheduleAtFixedTate(task,5,TimeUnit.SECONDS);方法为关键
此次任务就是 run() 方法里面的内容
public class TestMain { public static void main(String[] args) { Runnable task = new Runnable() { // run 方法内的内容就是定时任务的内容 public void run() { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); System.out.println("当前的系统时间为:" + sdf.format(new Date())); } }; ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor(); // 参数解释 // 1=此次任务、2=任务开始延迟时间、3=任务之间间隔时间、4=单位 service.scheduleAtFixedRate(task, 5, 5, TimeUnit.SECONDS); } }
标签:thread sim 之间 间隔 内容 bsp ice 摘要 single
原文地址:https://www.cnblogs.com/zhanzhuang/p/9870695.html