Java TryWtihResource语句

Posted 皮特王同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java TryWtihResource语句相关的知识,希望对你有一定的参考价值。

当需要关闭资源时,通常会使用try-finally语句

  public void test2() throws Exception {
    Resource resource = new Resource();
    try {
      System.out.println("doing somethings");
    } finally {
      resource.close();     
    }
  }

java7新增了tryWithResource语句专门用于处理资源关闭的情况,基本结构为:try()

public class TryWith {
  private class Resource implements AutoCloseable {

    @Override
    public void close() throws Exception {
      System.out.println("resource is closed");
    }
  }

  public void test() throws Exception {
    try(Resource resource = new Resource()) {
      System.out.println("doing something");
    }
  }

  public static void main(String[] args) throws Exception {
    TryWith tryWith = new TryWith();
    tryWith.test();
  }
}

括号内用于初始化资源,资源需要实现java.lang.AutoCloseable接口,即实现close()方法。 括号内可以初始化多个资源,比如try(Resource resource1 = new Resource();Resource resource2 = new Resource()){}

tryWithResource语句类似Python中的with..as语句

以上是关于Java TryWtihResource语句的主要内容,如果未能解决你的问题,请参考以下文章

分享知识-快乐自己:初识 Hibernate 概念片

用java给html文件添加必要的控制html代码片

52 java编程思想——创建窗口和程序片 程序片限制

57 java编程思想——创建窗口和程序片 可视编程和Beans

[Java - 调用WebService]{http://schemas.microsoft.com/ws/2005/05/addressing/none}ActionNotSupported(代码片

-Java基础-方法