在Java中,Thread.sleep()方法用于暫停當(dāng)前線程的執(zhí)行一段指定的時間。它接受一個以毫秒為單位的參數(shù),表示暫停的時間。
使用方法如下:
try {
// 暫停當(dāng)前線程執(zhí)行500毫秒
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
public static void main(String[] args) throws InterruptedException {
// 暫停當(dāng)前線程執(zhí)行500毫秒
Thread.sleep(500);
}
注意:使用Thread.sleep()方法時,需要處理InterruptedException異常,這是因為在休眠期間,可能會有其他線程中斷當(dāng)前線程的休眠。