当前位置: 技术问答>java相关
狂菜的问题,如何延时啊!!!
来源: 互联网 发布时间:2017-04-12
本文导语: 一个循环。执行的时候,停2秒再进行下一次循环,呵呵,该如何写啊!!!! 谢谢!!! | public synchronized void run() { while(!stop) { System.out.println("ok"); ...
一个循环。执行的时候,停2秒再进行下一次循环,呵呵,该如何写啊!!!!
谢谢!!!
谢谢!!!
|
public synchronized void run() {
while(!stop) {
System.out.println("ok");
try {
wait(2000);
} catch(InterruptedException e) {
System.err.println("Interrupted");
}
}
}
while(!stop) {
System.out.println("ok");
try {
wait(2000);
} catch(InterruptedException e) {
System.err.println("Interrupted");
}
}
}
|
try{
sleep(2000);
}
catch(InterruptedException e){
}
sleep(2000);
}
catch(InterruptedException e){
}