JDK7 新特性

1. try-with-resources 最初是看OSChina,红薯发文看见的,比较好用。java 操做的类只要是实现了AutoCloseable接口就能够在try语句块退出的时候自动调用close方法关闭流资源。ide InputStream is = null; OutputStream os = null; try { // 流 is = xxx; os = xx
相关文章
相关标签/搜索