最佳答案
以下处理InterruptedException
的方法之间的区别是什么?最好的方法是什么?
try{
//...
} catch(InterruptedException e) {
Thread.currentThread().interrupt();
}
或
try{
//...
} catch(InterruptedException e) {
throw new RuntimeException(e);
}
编辑:我还想知道在哪些场景中使用这两个。