Java7,AutoClosable
3954 단어 java7
준비 하 다.
Exception{} class SwingException extends
Exception{} class CloseException extends Exception{}
class OpenDoor implements
AutoCloseable { public OpenDoor() throws
Exception { System.out.println("The door is open."
); //throw new OpenException()
}; public void swing() throws
Exception { System.out.println("The door is becoming unhinged."
); //throw new SwingException();
} public void close() throws
Exception { System.out.println("The door is closed."
); // throw new CloseException();
} }
TryWithResources { public static void main(String[] args) throws
Exception { try ( OpenDoor door = new
OpenDoor() ) { door.swing(); } catch
(Exception e) {System. out. println ("Is there a draft?" + e. getClass ()); / e. getClass () 주의
} finally
{ System.out.println("I'm putting a sweater on, regardless. "
); } } }
위의 코드 를 실행 합 니 다. 이상 을 던 지지 않 았 다 면 출력 은 이 랬 을 것 입 니 다.
The door is open. The door is becoming unhinged. The door is closed. I'm putting a sweater on, regardless.
세 가지 이상 이 현재 주석 이 떨 어 졌 으 니, 지금 우 리 는 하나씩 그들 을 던 져 보 자.
시작 하 다
public OpenDoor() throws
Exception { System.out.println("The door is open."
); throw new
OpenException(); }
코드 인쇄 결 과 는 다음 과 같 습 니 다.
The door is open. Is there a draft? class
OpenException I'm putting a sweater on, regardless.
구조 함수 가 이상 을 던 졌 을 때 try - with - resource 코드 체 부분의 코드 가 실행 되 지 않 았 음 을 볼 수 있 습 니 다. 자원 을 설명 할 때 이상 이 있 으 면 자원 이 초기 화 되 지 않 았 다 고 볼 수 있 기 때문에 자원 을 방출 해 야 합 니 다. 그러나 주의해 야 할 때 다른 자원 이 올 바 르 게 초기 화 되 었 다 면 성명 의 반대 순서에 따라 호출 됩 니 다.자원 의 close () 방법.
The door is open. The door is becoming unhinged. The door is closed. Is there a draft? class
SwingException I'm putting a sweater on, regardless.
위의 출력 에서 우 리 는 알 수 있다.
SwingException
The door is open.
The door is becoming unhinged.
The door is closed.
Is there a draft? class CloseException
I'm putting a sweater on, regardless.
나 는 천 왕 개 지 호의 분할 선 이다.
참고:http://www.4byte.cn/learning/84919/java-7-xin-te-xing-zi-dong-zi-yuan-guan-li-arm-he-autoclosable-jie-kou-jiao-cheng.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java7,AutoClosable대부분의 이러한 '청소' 문 제 는 이상 이 발생 했 을 때 청소 방법 이 호출 되 지 않 았 기 때 문 입 니 다. 구조 함 수 는 OpenException 을 던 지고 swing () 방법 은 Swing Exce...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.