目录
介绍
try-with-resources是java中的环绕语句之一,旨在减轻开发人员释放try
块中使用的资源的义务。
它最初在java 7中引入,背后的全部想法是,开发人员无需担心仅在一个try-catch-finally块中使用的资源的资源管理。这是通过消除对finally
块的依赖而实现的。
此外,使用try-with-resources的代码通常更清晰易读,因此使代码更易于管理,尤其是当我们处理许多try
块时。
语法
try-with-resources的语法与通常try-catch-finally语法相同。
普通try:
bufferedwriter writer = null; try { writer = new bufferedwriter(new filewriter(filename)); writer.write(str); // do something with the file we've opened } catch (ioexception e) { // handle the exception } finally { try { if (writer != null) writer.close(); } catch (ioexception e) { // handle the exception } }
try-with-resources:
try(bufferedwriter writer = new bufferedwriter(new filewriter(filename))){ writer.write(str); // do something with the file we've opened } catch(ioexception e){ // handle the exception }
java理解此代码的方式:
try语句之后在括号中打开的资源仅在此处和现在需要。
.close()
在try块中完成工作后,将立即调用它们的方法。如果在try块中抛出异常,无论如何我会关闭这些资源。
注意:
从java 9开始,没有必要在try-with-resources语句中声明资源。
可以这样做:
bufferedwriter writer = new bufferedwriter(new filewriter(filename)); try (writer) { writer.write(str); // do something with the file we've opened } catch(ioexception e) { // handle the exception }