java 延迟输出问题
publicclassXXX{publicstaticvoidmain(String[]args){Demod=newDemo();System.out.println(...
public class XXX
{
public static void main(String[] args)
{
Demo d=new Demo();
System.out.println("hello1");
System.out.println("hello2");
System.out.println("hello3");
}
}
上面3句话,我想都延迟一秒输出,该怎么加,谢谢 展开
{
public static void main(String[] args)
{
Demo d=new Demo();
System.out.println("hello1");
System.out.println("hello2");
System.out.println("hello3");
}
}
上面3句话,我想都延迟一秒输出,该怎么加,谢谢 展开
3个回答
展开全部
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.schedule(new TimerTask(){
public void run(){
System.out.println("退出");
this.cancel();}},500);//五百毫秒
这种延时比sleep精确。上述延时方法只运行一次,如果需要运行多次, 使用timer.schedule(new MyTask(), 1000, 2000); 则每间隔2秒执行MyTask()
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.schedule(new TimerTask(){
public void run(){
System.out.println("退出");
this.cancel();}},500);//五百毫秒
这种延时比sleep精确。上述延时方法只运行一次,如果需要运行多次, 使用timer.schedule(new MyTask(), 1000, 2000); 则每间隔2秒执行MyTask()
展开全部
main里这么写
try {
Thread.sleep(1000);
System.out.println("hello2");
Thread.sleep(1000);
System.out.println("hello3");
} catch (InterruptedException e) {
e.printStackTrace();
}
try {
Thread.sleep(1000);
System.out.println("hello2");
Thread.sleep(1000);
System.out.println("hello3");
} catch (InterruptedException e) {
e.printStackTrace();
}
追问
catch里面变成Exception e也可以吗
追答
可以的。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
继承线程类 然后Thread.sleep(1000);//线程睡眠一秒
追问
= =所以说,求修改代码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询