codechacha / codechacha-comments-repo

codechacha-comments-repo
0 stars 0 forks source link

Java - Try-with-resources로 자원 쉽게 해제하기 #11

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Java - Try-with-resources로 자원 쉽게 해제하기

try-with-resources는 try(...)에서 선언된 객체들에 대해서 try가 종료될 때 자동으로 자원을 해제해주는 기능입니다. 객체가 AutoCloseable을 구현하였다면 Java는 try구문이 종료될 때 close()를 호출해 줍니다. 코드를 간결하게 만들어 읽기 쉽고 유지보수가 좋은 코드를 작성할 수 있게 도와줍

https://codechacha.com/ko/java-try-with-resources/

Denia-park commented 2 years ago

덕분에 좋은 내용 잘 보고 갑니다 감사합니다.