Timer timer = new Timer()
TimerTask tt = new TimerTask() {
public void run() {
/* 投放炸d的 *** 作 */
new Thread() {
public void run() {
try {
Thread.sleep(5000)
}catch (Exception e) { }
/* 爆炸的 *** 作 */
}
}.start()
}
}timer.schedule(tt, 0, 3000)
用java实现一个计时器的方法:
public class TestDingShi implements Runnable
{
Thread xc
Dao dao=new DaoImpl()
public TestDingShi()
{
xc=new Thread(this)//线程开启
xc.start()
}
public void run()
{
while (true)
{
try
{
xc.sleep(1000)//睡眠开始计时
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace()
}
//TODO定时在此
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)