7
JavaでのInterruptedExceptionの処理
次の処理方法の違いは何InterruptedExceptionですか?それを行う最良の方法は何ですか? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } または try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } 編集:これらの2つがどのシナリオで使用されているかも知りたいのですが。