7
जावा में InterruptedException को हैंडल करना
हैंडलिंग के निम्नलिखित तरीकों में क्या अंतर है InterruptedException? यह करने के लिए सबसे अच्छा तरीका क्या है? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } या try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } संपादित करें: मैं यह भी जानना चाहूंगा कि इन दोनों का उपयोग किन …