标签:ide sch code util print schedule string fixed date()
import java.util.Date; import java.util.Timer; import java.util.TimerTask; public class Timer_task { public static void main(String[] args) { //TimerTask实现了Runable接口 TimerTask timerTask=new TimerTask(){ @Override public void run() { //定时任务要执行的操作 System.out.println("定时任务:"+new Date()); } }; Timer timer=new Timer(); long delay=0;//没有延迟 long intevalPeriod=1*1000;//间隔时间 timer.scheduleAtFixedRate(timerTask, delay, intevalPeriod); } }
标签:ide sch code util print schedule string fixed date()
原文地址:https://www.cnblogs.com/suhfj-825/p/9044728.html