发布网友 发布时间:2022-04-23 04:14
共5个回答
热心网友 时间:2022-04-24 02:36
JAVA中使用延迟主要有以下两种方法:
1、使用Timer类
Timer类的schele方法可以按照时间计划执行程序。
public static void main(String[] args) {
Timer timer = new Timer();
TimerTask timerTask = new MyTimerTask();
timer.schele(timerTask, 10000, 10000);
}
schele方法中需要传入一个TimerTask类型的对象,该对象需要继承并实现TimerTask类的run方法,或者以匿名内部类的方式实现run方法。schele的第二个参数为程序第一次执行run方法的延时时间,第三个参数为执行完第一次run方法后延时循环执行run方法的时间。例如,上面的程序就是延时10s执行timerTask的run方法,执行完毕之后每隔10s执行一次run方法。
实现了run方法后就会根据schele设置的时间计划来执行。schele的参数也可以不要循环时间,只延时执行一次,还有多种重载的schele方法,可以根据实际情况使用。
2、使用Thread
Thread.currentThread().sleep(10000);
使线程暂停一段时间。
热心网友 时间:2022-04-24 03:54
Java中主要有两种方法来实现延迟,即:Thread和Timer
1、普通延时用Thread.sleep(int)方法,这很简单。它将当前线程挂起指定的毫秒数。如
try
{
Thread.currentThread().sleep(1000);//毫秒
}
catch(Exception e){}
在这里需要解释一下线程沉睡的时间。sleep()方法并不能够让程序"严格"的沉睡指定的时间。例如当使用5000作为sleep()方法的参数时,线 程可能在实际被挂起5000.001毫秒后才会继续运行。当然,对于一般的应用程序来说,sleep()方法对时间控制的精度足够了。
2、但是如果要使用精确延时,最好使用Timer类:
Timer timer=new Timer();//实例化Timer类
timer.schele(new TimerTask(){
public void run(){
System.out.println("退出");
this.cancel();}},500);//五百毫秒
这种延时比sleep精确。上述延时方法只运行一次,如果需要运行多次, 使用timer.schele(new MyTask(), 1000, 2000); 则每间隔2秒执行MyTask()
热心网友 时间:2022-04-24 05:29
new Thread(new Runnable() {
public void run() {
while(true) {
repaint();
Thread.sleep(500);
}
}
}).start();
这样就没错误了。
要用延迟的话,不妨试试java.util.Timer().
new java.util.Timer().schele(new TimerTask(){
public void run() {
//这里写延迟后要运行的代码
repaint();
//如果只要这个延迟一次,用cancel方法取消掉.
this.cancel();
}}, 3000);
//参考参考java帮助文挡,也可以以固定间隔连续执行.
热心网友 时间:2022-04-24 07:20
用Thread就不会iu无法终止
new Thread(new Runnable() {
public void run() {
while(true) {
repaint();
Thread.sleep(500);
}
}
}.start();
或者用现成的
javax.swing.Timer timer = new javax.swing.Timer(500, new ActionListener() {
public void actionPerformed(ActionEvent e) {
repaint();
}
};
timer.start();
热心网友 时间:2022-04-24 09:28
Thread.sleep(0.5 * 1000);
暂停0.5秒