Behandlung von InterruptedException in Java
Was ist der Unterschied zwischen den folgenden Arten der Handhabung InterruptedException? Was ist der beste Weg, um es zu tun? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } ODER try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } EDIT:...