Java 7 新功能: 省略finally, 保证资源正常关闭
class MyResource implements Closeable{
@Override
public void close() throw IOException{
}
}
try( myResource = new MyResource() ){ // no need to write finally block to release resource, java will automatially close this resource.
}catch(Exception e){
}