共计 420 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,Thread.sleep() 方法用于暂停当前线程的执行一段指定的时间。它接受一个以毫秒为单位的参数,表示暂停的时间。
使用方法如下:
- 在 try-catch 块中使用 Thread.sleep() 方法:
try {
// 暂停当前线程执行 500 毫秒
Thread.sleep(500);
} catch (InterruptedException e) {e.printStackTrace();
}
- 在方法声明中使用 throws InterruptedException 抛出异常:
public static void main(String[] args) throws InterruptedException {
// 暂停当前线程执行 500 毫秒
Thread.sleep(500);
}
注意:使用 Thread.sleep() 方法时,需要处理 InterruptedException 异常,这是因为在休眠期间,可能会有其他线程中断当前线程的休眠。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-21