어렵다....1 TIL내일배움캠프 try-with-resources 오늘의 키워드try-with-resources오늘의 내용try-with-resources란?자원을 명시적으로 닫은 필요 없이 자동으로 닫아주는 구조는 제공하는 기능이다. 주로 파일 입출력과 DB연결에 사용되며 자원을 할당하고 해제하는 코드가 더 간결하고 안전해지는 장점이 있다try (BufferedReader br = new BufferedReader(new FileReader("path/to/file.txt"))) { String line; while ((line = br.readLine()) != null) { System.out.println(line); }} catch (IOException e) { e.printStackTrace();}다중 자원 사용 시 예제t.. 2024. 7. 29. 이전 1 다음