«interrupted-exception» 태그된 질문

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

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.