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

使用try-with-resources注意的问题

时间:2015-07-30 22:47:38      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:

package coin;

import java.io.FileInputStream;
import java.io.ObjectInputStream;

/**
 * 使用 try-with-resources 特性要注意的问题,在某些情况下资源可能无法关闭。
 * 要确保 try-with-resources 生效,正确的用法是为了各个资源声明独立变量。
 * @author Felix
 *
 */

public class TWRDemo {

    public static void main(String[] args) {

        // 下面的代码如果从文件(someFile.bin)创建ObjectInputStream时出错,
        // FileInputStream 可能就无法正确关闭。
        try(ObjectInputStream in = new ObjectInputStream(new FileInputStream("someFile.in"))) {
            ...
        }
        
        //要确保 try-with-resources 生效,正确的用法是为了各个资源声明独立变量。
        try(FileInputStream fin = new FileInputStream("someFile.bin");
                ObjectInputStream in = new ObjectInputStream(fin)) {
            ...
        }    
    }

}

 

使用try-with-resources注意的问题

标签:

原文地址:http://www.cnblogs.com/IcanFixIt/p/4690603.html

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