码迷,mamicode.com
首页 > 其他好文 > 详细

JDK7 AutoCloseable

时间:2019-02-12 13:14:23      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:row   extend   extends   imp   nal   接口   原因   try   exce   

干嘛的

直接看JDK7的流(运用了AutoCloseable)源码

public abstract class InputStream implements Closeable {
     //实现Closeable接口中的close方法
     public void close() throws IOException {}
}

public interface Closeable extends AutoCloseable {
    public void close() throws IOException;
}

JDK7起,无需我们在finally中进行流的关闭,原因在此

try(ObjectInputStream ois = new ObjectInputStream();) {}

拓展

当我们使用其他(需要关闭的)资源时,也可以实现AutoCloseable

JDK7 AutoCloseable

标签:row   extend   extends   imp   nal   接口   原因   try   exce   

原文地址:https://www.cnblogs.com/Zhongzz/p/10364475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!