Menangani InterruptedException di Java
Apa perbedaan antara cara penanganan berikut InterruptedException? Apa cara terbaik untuk melakukannya? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } ATAU try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } EDIT: Saya juga...