7
在Java中处理InterruptedException
以下处理方式之间有什么区别InterruptedException?最好的方法是什么? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } 要么 try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } 编辑:我也想知道这两种情况在哪些情况下使用。