Thread.sleep()方法的异常处理有哪些方法

avatar
作者
猴君
阅读量:0

  1. 使用try-catch块捕获InterruptedException异常,因为Thread.sleep()方法会抛出InterruptedException异常。

示例代码:

try {     Thread.sleep(1000); } catch (InterruptedException e) {     e.printStackTrace(); } 
  1. 在方法签名中声明抛出InterruptedException异常,将异常传递给调用方法处理。

示例代码:

public void sleep() throws InterruptedException {     Thread.sleep(1000); } 
  1. 使用Thread.currentThread().interrupt()重新中断当前线程。

示例代码:

try {     Thread.sleep(1000); } catch (InterruptedException e) {     Thread.currentThread().interrupt(); } 
  1. 忽略InterruptedException异常,不对其进行处理。

示例代码:

try {     Thread.sleep(1000); } catch (InterruptedException e) {     // do nothing } 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!