Obsługa wyjątku InterruptedException w Javie
Jaka jest różnica między następującymi sposobami postępowania InterruptedException? Jak najlepiej to zrobić? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } LUB try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } EDYCJA:...