在Java中,可以通过Thread.sleep()
方法来使当前线程暂停执行一段时间。Thread.sleep()
方法接受一个以毫秒为单位的时间参数,指定线程暂停的时间。以下是Thread.sleep()
方法的使用方法:
try {
// 线程暂停5秒
Thread.sleep(5000);
} catch (InterruptedException e) {
// 捕获中断异常
e.printStackTrace();
}
在上面的例子中,Thread.sleep(5000)
会使当前线程暂停执行5秒钟。需要注意的是,Thread.sleep()
方法会抛出InterruptedException
异常,在捕获该异常时需要处理相应的逻辑。