我知道这个问题here,但我的问题略有不同。如果我希望自己通过各种Thread方法(不是通过实用程序类或Quartz)手动编写特定时间线程的运行,那么最有效的效率(就开销而言) )编码。
我考虑过:
boolean wasInterrupted = false;
while (System.currentTimeMillis() < executionTimeInMillis) {
try {
Thread.sleep(X);
} catch (InterruptedException ie) {
wasInterrupted = true;
}
}
if (!wasInterrupted) {
doMyThing();
}
有更好的方法吗?这是原始而幼稚的吗?
答案 0 :(得分:3)
您有3种基本可能性:
最好的方法是使用显示器,因为您知道何时获得锁定以及何时释放锁定。而且,它允许让其他线程执行。如果您想了解为什么必须避免睡眠和屈服方法,请阅读http://www.javamex.com/tutorials/threads/yield.shtml。
答案 1 :(得分:0)
我会使用Timer / TimerTask组合,启动你想要在TimerTask的run()方法中运行的线程(或者,你可以直接在TimerTask的run()方法中完成工作,然后这将是在Timer的线程中执行)。这种方法不需要try / catch块或while循环,让我更直接。
退房:
http://download.oracle.com/docs/cd/E17476_01/javase/1.4.2/docs/api/java/util/Timer.html
http://download.oracle.com/docs/cd/E17476_01/javase/1.4.2/docs/api/java/util/TimerTask.html