码迷,mamicode.com
首页 > 编程语言 > 详细

Java两种延时——thread和timer

时间:2016-06-07 16:25:55      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

Java中有时候需要使程序暂停一点时间,称为延时。普通延时用Thread.sleep(int)方法,这很简单。它将当前线程挂起指定的毫秒数。如

    try   
    {   
    Thread.currentThread().sleep(1000);//毫秒   
    }   
    catch(Exception e){}  

  

在这里需要解释一下线程沉睡的时间。sleep()方法并不能够让程序"严格"的沉睡指定的时间。例如当使用5000作为sleep()方法的参数时,线 程可能在实际被挂起5000.001毫秒后才会继续运行。当然,对于一般的应用程序来说,sleep()方法对时间控制的精度足够了。

 

但是如果要使用精确延时,最好使用Timer类:

Timer timer=new Timer();//实例化Timer类   
timer.schedule(new TimerTask(){   
public void run(){   
System.out.println("退出");   
this.cancel();}},500);//五百毫秒 

  这种延时比sleep精确。上述延时方法只运行一次,如果需要运行多次, 使用timer.schedule(new MyTask(), 1000, 2000); 则每间隔2秒执行MyTask()

Java两种延时——thread和timer

标签:

原文地址:http://www.cnblogs.com/zhouzhilong/p/5567249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!