자바 라이브러리에는 close 메서드를 호출해 직접 닫아줘야 하는 자원들이 있다. try-with-resources를 쓰면 AutoCloseable 또는 Closeable 인터페이스를 구현한 자원 객체들을 사용 후, 자동으로 close 하게 할 수 있다. 예시 import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; public class TryWithResourcesExample { public static void main(String[] args) { // 파일 경로 지정 String filePath = "example.txt"; // try-with-resources를 사용하여 BufferedReade..