JDK7 ãä½¿ãæºåãåºæ¥ãã®ã§ãä½å½ãããã¾ãã Java7 ã§ã®å人çã«å¬ããã®ã try-with-resources Statement ã§ããAutoCloseable ï¼ãå®è£ ããã¯ã©ã¹ï¼ã®å¤æ°ããã®æ§æã§åæåããã¨ãåæã« close ãã¦ãããã£ã¦ãã®ã§ãã ã§ã¯ããã£ã¨ä½¿ã£ã¦ã¿ã¾ãã public class TryWithResources { public static void main(String[] args) { try (AutoCloseable imp = new AutoCloseableImpl()) { // New! System.out.println("hoge"); } catch(Exception e) { System.out.println("catch:" + e); } finally { System.out.printl
{{#tags}}- {{label}}
{{/tags}}