timer已经schedule过了。想在运行过程中更改触发频率。
5条回答 默认 最新
- 被掐死的温柔 2012-09-06 15:57关注
public class TestTimer {
class MyTimerTask extends TimerTask { private int time; //定时执行时间 public MyTimerTask(){ } public MyTimerTask(int _time){ this.time = _time; } @Override public void run() { System.out.println("time:" + time); System.out.println((time==3000) ); if(time==3000) { System.out.println("---------------"); throw new RuntimeException("异常"); } if(time%6000==0) { time = 0; } System.out.println("下次执行时间" + time); new Timer().schedule(new MyTimerTask(time+1000), time); } } public MyTimerTask init() { return new MyTimerTask(); } public static void main(String[] args) throws Exception { new Timer().schedule(new TestTimer().init(), 2000); while(true) { System.out.println(new Date().getSeconds()); Thread.sleep(1000); } }
}
不知道能不能满足你的要求
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决评论 打赏 举报无用 1
悬赏问题
- ¥20 pcf8563时钟芯片不启振
- ¥20 pip2.40更新pip2.43时报错
- ¥15 换yum源但仍然用不了httpd
- ¥50 C# 使用DEVMOD设置打印机首选项
- ¥15 麒麟V10 arm安装gdal
- ¥15 想用@vueuse 把项目动态改成深色主题,localStorge里面的vueuse-color-scheme一开始就给我改成了dark,不知道什么原因(相关搜索:背景颜色)
- ¥20 OPENVPN连接问题
- ¥15 flask实现搜索框访问数据库
- ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
- ¥100 如何用js写一个游戏云存档