Language/Java

try-with-resources

모리노아진 2020. 11. 14. 18:03

AutoCloseable을 implements 한 클래스는 try - with - resources의 구조를 사용이 가능하다.

 

try(resource r){



}catch(Exception e){



}

의 구조이다.

 

 

 

출처 : codechacha.com/ko/java-try-with-resources/