7
การจัดการ InterruptedException ใน Java
ความแตกต่างระหว่างวิธีการจัดการต่อไปนี้InterruptedExceptionคืออะไร? วิธีที่ดีที่สุดที่จะทำคืออะไร? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } หรือ try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } แก้ไข: ฉันต้องการที่จะรู้ว่าในสถานการณ์เหล่านี้ใช้ทั้งสอง