java中带参数的try(){}语法含义

在学习Mybatis框架时, 官方文档里出现了如下的参考代码:

1
2
3
try (SqlSession session = sqlSessionFactory.openSession()) {
// 你的应用逻辑代码
}

查阅资料知道, 这是JDK7的新特性, 是针对于继承了Closeable类的服务推出的

其最简形式 为:

1
2
3
4
try(Resource res = xxx)//可指定多个资源
{
work with res
}

try块退出时,会自动调用res.close()方法,关闭资源。

不用写一大堆finally来关闭资源,所有实现Closeable的类声明都可以写在里面,最常见于流操作,socket操作,新版的httpclient也可以;
需要注意的是,try()的括号中可以写多行声明,每个声明的变量类型都必须是Closeable的子类,用分号隔开.

在没有这个语法之前,流操作一般是这样写的:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
InputStream is = null;
OutputStream os = null;
try {
//...
} catch (IOException e) {
//...
}finally{
try {
if(os!=null){
os.close();
}
if(is!=null){
is.close();
}
} catch (IOException e2) {
//...
}
}

而现在你可以这样写:

1
2
3
4
5
6
7
8
try(
InputStream is = new FileInputStream("...");
OutputStream os = new FileOutputStream("...");
){
//...
}catch (IOException e) {
//...
}

生活一下子就美好了!!

-------------本文结束感谢您的阅读-------------
可以请我喝杯奶茶吗