[JAVA] jdk7의 신기능
# static import문 [ex] import static java.lang.System.out; class A{ public static void main(String args[]){ System.out.println(100); out.println(200); } } # Closeable인터페이스 jdk7에서 finally를 사용하지 않아도 자동으로 자원을 회수하는 기능이 추가됨. Closeable인터페이스를 구현한 모든 객체에 대해서 자동으로 자원회수기능이 있다. [ex] 기존- try{} catch(){} finally{} 추가기능 -try(객체생성){} catch(){} [ex] import java.io.*; class A{ public static void main(String args[..
LANGUAGE/JAVA
2017. 11. 15. 10:55