Item 9. try-finally보다는 try-with-resources를 사용하라
Last updated
Last updated
public class Item9 {
public static void main(String[] args) {
try (MyResource resource = new MyResource()) {
resource.execute();
};
}
}
class MyResource implements AutoCloseable {
@Override
public void close() throws Exception {
// 자원을 회수하는 로직
}
}