传统定时器
Posted 安静
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了传统定时器相关的知识,希望对你有一定的参考价值。
/** * * @描述: 传统定时器 . * @作者: Wnj . * @创建时间: 2017年5月15日 . * @版本: 1.0 . */ public class TraditionalTimerTest { private static int count = 0; public static void main(String[] args) { /* * 宿主 * new Timer().schedule(new TimerTask() { @Override public void run() { System.out.println("bombing!"); } //10秒后开始,间隔3秒执行一次 }, 10000,3000);*/ class MyTimerTask extends TimerTask { @Override public void run() { count = (count + 1) % 2; System.out.println("bombing!"); new Timer().schedule(/*new TimerTask() { @Override public void run() { System.out.println("bombing!"); } }*/new MyTimerTask(), 2000 + 2000 * count); } } new Timer().schedule(new MyTimerTask(), 2000); while (true) { System.out.println(new Date().getSeconds()); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
以上是关于传统定时器的主要内容,如果未能解决你的问题,请参考以下文章