7
Java에서 InterruptedException 처리
다음 처리 방법의 차이점은 무엇입니까 InterruptedException? 가장 좋은 방법은 무엇입니까? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } 또는 try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } 편집 : 나는이 두 시나리오가 어떤 시나리오에서 사용되는지 알고 싶습니다.