我尝试过延迟(或休眠)我的Java程序,但是出现了一个错误。
我无法使用Thread.sleep(x)或wait()。同样的错误信息出现:
interruptedexception;必须被捕获或宣布被丢弃。
在使用Thread.sleep()或wait()方法之前,是否需要任何步骤?
我尝试过延迟(或休眠)我的Java程序,但是出现了一个错误。
我无法使用Thread.sleep(x)或wait()。同样的错误信息出现:
interruptedexception;必须被捕获或宣布被丢弃。
在使用Thread.sleep()或wait()方法之前,是否需要任何步骤?
当前回答
或者,如果你不想处理线程,试试这个方法:
public static void pause(int seconds){
Date start = new Date();
Date end = new Date();
while(end.getTime() - start.getTime() < seconds * 1000){
end = new Date();
}
}
它在您调用它时开始,在秒数过去时结束。
其他回答
public static void main(String[] args) throws InterruptedException {
//type code
short z=1000;
Thread.sleep(z);/*will provide 1 second delay. alter data type of z or value of z for longer delays required */
//type code
}
eg:-
class TypeCasting {
public static void main(String[] args) throws InterruptedException {
short f = 1;
int a = 123687889;
short b = 2;
long c = 4567;
long d=45;
short z=1000;
System.out.println("Value of a,b and c are\n" + a + "\n" + b + "\n" + c + "respectively");
c = a;
b = (short) c;
System.out.println("Typecasting...........");
Thread.sleep(z);
System.out.println("Value of B after Typecasting" + b);
System.out.println("Value of A is" + a);
}
}
放置你的线程。睡在一个尝试捕捉块
try {
//thread to sleep for the specified number of milliseconds
Thread.sleep(100);
} catch ( java.lang.InterruptedException ie) {
System.out.println(ie);
}
正如其他用户所说的,你应该用try{…} catch{…}。但是自从Java 1.5发布以来,有了一个TimeUnit类,它的功能与Thread.sleep(millis)相同,但更方便。 您可以选择睡眠操作的时间单位。
try {
TimeUnit.NANOSECONDS.sleep(100);
TimeUnit.MICROSECONDS.sleep(100);
TimeUnit.MILLISECONDS.sleep(100);
TimeUnit.SECONDS.sleep(100);
TimeUnit.MINUTES.sleep(100);
TimeUnit.HOURS.sleep(100);
TimeUnit.DAYS.sleep(100);
} catch (InterruptedException e) {
//Handle exception
}
它还有其他的方法: TimeUnit Oracle文档
你们有很多书要读。从编译器错误到异常处理,线程和线程中断。但这将达到你想要的效果:
try {
Thread.sleep(1000); //1000 milliseconds is one second.
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
使用下面的编码结构来处理异常
try {
Thread.sleep(1000);
} catch (InterruptedException ie) {
//Handle exception
}