时间:2021-05-19
在 JDK 7 之前,资源需要手动关闭
例如下面一个很常见的文件操作的例子:
Charset charset = Charset.forName("US-ASCII");String s = ...;BufferedWriter writer = null;try {writer = Files.newBufferedWriter(file, charset);writer.write(s, 0, s.length());} catch (IOException x) {System.err.format("IOException: %s%n", x);} finally {if (writer != null) writer.close();}在 JDK 7 之前,你一定要牢记在 finally 中执行 close 以释放资源
JDK 7 中的 try-with-resources 介绍
try-with-resources 是 JDK 7 中一个新的异常处理机制,它能够很容易地关闭在 try-catch 语句块中使用的资源。所谓的资源(resource)是指在程序完成后,必须关闭的对象。try-with-resources 语句确保了每个资源在语句结束时关闭。所有实现了 java.lang.AutoCloseable 接口(其中,它包括实现了 java.io.Closeable 的所有对象),可以使用作为资源。
例如,我们自定义一个资源类
public class Demo { public static void main(String[] args) {try(Resource res = new Resource()) {res.doSome();} catch(Exception ex) {ex.printStackTrace();}}}class Resource implements AutoCloseable {void doSome() {System.out.println("do something");}@Overridepublic void close() throws Exception {System.out.println("resource is closed");}}执行输出如下:
do somethingresource is closed可以看到,资源终止被自动关闭了。
再来看一个例子,是同时关闭多个资源的情况:
public class Main2 { public static void main(String[] args) {try(ResourceSome some = new ResourceSome();ResourceOther other = new ResourceOther()) {some.doSome();other.doOther();} catch(Exception ex) {ex.printStackTrace();}}}class ResourceSome implements AutoCloseable {void doSome() {System.out.println("do something");}@Overridepublic void close() throws Exception {System.out.println("some resource is closed");}}class ResourceOther implements AutoCloseable {void doOther() {System.out.println("do other things");}@Overridepublic void close() throws Exception {System.out.println("other resource is closed");}}最终输出为:
do somethingdo other thingsother resource is closedsome resource is closed在 try 语句中越是最后使用的资源,越是最早被关闭。
try-with-resources 在 JDK 9 中的改进
作为 Milling Project Coin 的一部分, try-with-resources 声明在 JDK 9 已得到改进。如果你已经有一个资源是 final 或等效于 final 变量,您可以在 try-with-resources 语句中使用该变量,而无需在 try-with-resources 语句中声明一个新变量。
例如,给定资源的声明
// A final resourcefinal Resource resource1 = new Resource("resource1");// An effectively final resourceResource resource2 = new Resource("resource2");老方法编写代码来管理这些资源是类似的:
// Original try-with-resources statement from JDK 7 or 8try (Resource r1 = resource1;Resource r2 = resource2) {// Use of resource1 and resource 2 through r1 and r2.}而新方法可以是
// New and improved try-with-resources statement in JDK 9try (resource1;resource2) {// Use of resource1 and resource 2.}看上去简洁很多吧。对 Java 未来的发展信心满满。
愿意尝试 JDK 9 这种新语言特性的可以下载使用 JDK 9 快照。Enjoy!
源码
本章例子的源码,可以在 https://github.com/waylau/essential-java 中 com.waylau.essentialjava.exception.trywithresources 包下找到。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
using语句是try...finally的简洁表示。使用try...finally或using的目的是,确保资源在using块退出或finally块结束之
jdk1.7和1.8的区别是: jdk1.8广义上来说是1.7的增强版,即1.8的功能更加强大,如:1.8中Switch语句支持string类型、Try-wi
Python异常处理机制还提供了一个finally语句,通常用来为try块中的程序做扫尾清理工作。注意,和else语句不同,finally只要求和try搭配使用
1、try-catch语句ECMA-262第3版引入了try-catch语句,作为JavaScript中处理异常的一种标准方式。语法:try{//可能会导致错误
1.如果执行了try块没有异常,则继续运行finally块中的语句,即使try块通过return,break,或者continue于最后的语句退出,finall