try-with-resources
·
책/이펙티브 자바
try-finally 문제점package exam;public class TryFinally { public static void main(String[] args) throws Exception { TestResource testResource = new TestResource(); try { testResource.firstMethod(); } finally { testResource.close(); } } static class TestResource implements AutoCloseable { public void firstMethod() { System.o..