广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州Java异常使用之try-with-resources块_北大青鸟IT学校

作者:邓华发布时间:2021-04-04分类:Java技术浏览:996


导读:上一篇文章惠州北大青鸟老师给大家讲了Java异常使用的访问线程的堆栈知识,接下来老师教大家Java异常使用的try-with-resources块知识。

上一篇文章惠州北大青鸟老师给大家讲了Java异常使用的访问线程的堆栈知识,接下来老师教大家Java异常使用的try-with-resources块知识。

Java 7添加了一个名为try-with-resources的新结构。

使用Java 7中的新的try-with-resources构造,上面的代码可以写成

try (AnyResource aRes = create the resource...) {
   // Work with the resource here.
   // The resource will be  closed automatically.
}

当程序退出构造时,try-with-resources构造自动关闭资源。

资源尝试构造可以具有一个或多个catch块和/或finally块。

我们可以在try-with-resources块中指定多个资源。两个资源必须用分号分隔。

最后一个资源不能后跟分号。

以下代码显示了try-with-resources使用一个和多个资源的一些用法:

try (AnyResource  aRes1  = getResource1())  {
   // Use aRes1  here
}try (AnyResource  aRes1  = getResource1(); AnyResource  aRes2  = getResource2())  {
   // Use aRes1  and  aRes2  here
}

我们在try-with-resources中指定的资源是隐式最终的。

在try-with-resources中的资源必须是java.lang.AutoCloseable类型。

Java 7添加了AutoCloseable接口,它有一个close()方法。

当程序退出try-with-resources块时,将自动调用所有资源的close()方法。

在多个资源的情况下,按照指定资源的相反顺序调用close()方法。

class MyResource implements AutoCloseable {  public MyResource() {
   System.out.println("Creating MyResource.");
 }
 @Override  public void close() {

   System.out.println("Closing  MyResource...");
 }
}public class Main {  public static void main(String[] args) {    try (MyResource mr = new MyResource();
       MyResource mr2 = new MyResource()) {

   }
 }
}

上面的代码生成以下结果。

Creating MyResouree.

Creating MyResouree.

Closing MyResource...

Closing MyResource...

想了解更多关于Java的资讯吗?可以来惠州北大青鸟新方舟校区了解一下。

Java11.png

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表