参考文献:
特别鸣谢
@ https://blog.csdn.net/qq_24448899/article/details/75731529
代码块:
public static void main(String[] args) { // 创建定时器 Timer timer = new Timer(); timer.schedule(new TimerTask() { // 在run方法中的语句就是定时任务执行时运行的语句。 public void run() { System.out.println("11232"); System.out.println("现在是:" + new Date().toLocaleString()); } // 表示在3秒之后开始执行,并且每2秒执行一次 }, 3000, 2000); }
控制台打印:
喜欢请点赞: