使用java.util.Timer
百度广告
在应用开发中,经常需要一些周期性的操作,比如每5分钟检查一下新邮件等。对于这样的操作最方便、高效的实现方式就是使用java.util.Timer工具类。比如下面的代码每5分钟检查一遍是否有新邮件:
private java.util.Timer timer;
timer.schedule(
使用这几行代码之后,Timer本身会每隔5分钟调用一遍server.checkNewMail()方法,不需要自己启动线程。Timer本身也是多线程同步的,多个线程可以共用一个Timer,不需要外部的同步代码。
public class AnnoyingBeep { T
Timer timer;
toolkit = Toolkit.getDefaultToolkit();
timer.schedule(new RemindTask(), 0, //initial delay 1*1000); //subsequent rate
class RemindTask extends TimerTask {
public void run() {
0) {
System.out.println("Beep!");
}
toolkit.beep();
//timer.cancel(); //Not necessary because we call System.exit System.exit(0);
}
}
}
Task scheduled.
Beep! //one second after the first beep
Time´s up! //one second after the third beep
Timer类也可以方便地用来作为延迟执行,比如下面的代码延迟指定的时间(以秒为单位)执行某操作。类似电视的延迟关机功能。
public class ReminderBeep {toolkit = Toolkit.getDefaultToolkit();
timer.schedule(new RemindTask(), seconds*1000);
class RemindTask extends TimerTask {
System.out.println("Time´s up!");
//timer.cancel(); //Not necessary because we call System.exit System.exit(0);
}
...
编辑推荐:
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
-
国家电网30270试题
-
湖南中烟7463试题
-
湖南统招专升本不连网,流畅做题
-
长沙理工大学考研培训4532试题
已有 22658 名学员学习以下课程通过考试
精品课程
更多- 电网书籍
- 财会书籍
- 其它工学书籍
- 电气拼团课程
- 财会拼团课程
- 其它工学拼团
-
- 长理培训微信公众号
- 每日推送精彩考试资讯
长按二维码识别
微信搜索“ 长理培训”
-
- 加入QQ群一起来考国网!
- QQ群号:223940140
点击进入
长理培训客户端 资讯,试题,视频一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>