之前用c#执行文件读写操作时为了偷懒一直在用using(){}这个语法糖,他是继承自c++的资源自动管理思想,c#诞生时就自带的,后来在写java程序时,由于编码习惯(其实就是想偷懒),就想找个相似的东西来少写几行代码,于是他来了:
try-with-resource
这个语法糖是java7才引进的,(看似是借鉴了上面那位的机制),下面是语法介绍:
try(对象)
{
代码操作......
}
catch(异常类)
{
处理
}
例如:
try (FileReader fr = new FileReader("C:\\Users\\Honphie.$.Won\\Desktop\\testjavaio\\" + uuid + ".txt")) {
int c;
while ((c = fr.read()) != -1) {
System.out.print((char) c);
}
} catch (IOException e) {
e.printStackTrace();
}
try-with-resource会在代码块执行完后自动释放括号内的资源