JavaTM Platform
Standard Ed. 6

java.lang
클래스 InterruptedException

java.lang.Object 
  상위를 확장 java.lang.Throwable 
      상위를 확장 java.lang.Exception 
          상위를 확장 java.lang.InterruptedException
모든 구현된 인터페이스:
Serializable


public class InterruptedException
extends Exception

어느 thread가 대기 상태, 휴지 상태, 또는 점유 되고 있을 때, 액티버티의 전인가 그 사이의 어느 쪽인가에 그 thread로 인터럽트가 발생했을 경우에 throw 됩니다. 다만, 경우에 따라서는, 메소드로, 현재의 thread로 인터럽트가 발생했던 적이 있을지 어떨지를 테스트할 수도 있습니다. 이것을 실행하는 경우는, 곧바로 이 예외를 throw 합니다. 이하의 코드를 사용해 이 효과를 실현할 수 있습니다.

if (Thread.interrupted())  // Clears interrupted status!
throw new InterruptedException();
 

도입된 버젼:
JDK1. 0
관련 항목:
Object.wait() , Object.wait(long) , Object.wait(long, int) , Thread.sleep(long) , Thread.interrupt() , Thread.interrupted() , 직렬화 된 형식

생성자 의 개요
InterruptedException ()
          상세 메세지를 지정하지 않고 InterruptedException 를 구축합니다.
InterruptedException (String  s)
          지정된 상세 메세지를 가지는 InterruptedException 를 구축합니다.
 
메소드의 개요
 
클래스 java.lang. Throwable 로부터 상속된 메소드
fillInStackTrace , getCause , getLocalizedMessage , getMessage , getStackTrace , initCause , printStackTrace , printStackTrace , printStackTrace , setStackTrace , toString
 
클래스 java.lang. Object 로부터 상속된 메소드
clone , equals , finalize , getClass , hashCode , notify , notifyAll , wait , wait , wait
 

생성자 의 상세

InterruptedException

public InterruptedException()
상세 메세지를 지정하지 않고 InterruptedException 를 구축합니다.


InterruptedException

public InterruptedException(String  s)
지정된 상세 메세지를 가지는 InterruptedException 를 구축합니다.

파라미터:
s - 상세 메세지

JavaTM Platform
Standard Ed. 6

버그의 보고와 기능의 요청
한층 더 자세한 API 레퍼런스 및 개발자 문서에 대해서는,Java SE 개발자용 문서를 참조해 주세요. 개발자전용의 상세한 해설, 개념의 개요, 용어의 정의, 버그의 회피책, 및 코드 실례가 포함되어 있습니다.

Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms . Documentation Redistribution Policy 도 참조해 주세요.