在Java中,可以使用Thread.sleep()方法來使當前正在執行的線程休眠一段時間。該方法接受一個long類型的參數,表示線程要休眠的時間長度,單位是毫秒。
下面是一個示例代碼,演示如何調用Thread.sleep()方法:
public class SleepExample {
public static void main(String[] args) {
System.out.println("Start");
try {
// 使當前線程休眠3秒
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("End");
}
}
在上面的示例中,在調用Thread.sleep(3000)方法后,當前線程會休眠3秒鐘,然后繼續執行后續的代碼。注意需要處理InterruptedException異常。