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