首页  >  文章  >  Java  >  Java 9中的try-with-resources有哪些改进?

Java 9中的try-with-resources有哪些改进?

WBOY
WBOY转载
2023-09-10 12:45:031530浏览

Java 9中的try-with-resources有哪些改进?

Try-with-Resources 在Java 7中引入。使用它的目的是在使用后自动 关闭资源。限制是资源需要在try之前或try语句内部声明,否则会抛出编译错误

Java 9改进了try-with-resources,不再需要在try语句内部声明对象。

在下面的示例中,我们实现了try-with-resources的概念。

示例

import java.io.*;
public class TryWithResourceTest {
   public static void main(String[] args) throws FileNotFoundException {
      String line;
      Reader reader = new StringReader("tutorialspoint");
      BufferedReader breader = new BufferedReader(reader);
      <strong>try(breader)</strong> {
         while((line = breader.readLine()) != null) {
            System.out.println(line);
         }
      } catch(IOException ioe) {
         ioe.printStackTrace();
      }
   }
}

输出

<strong>tutorialspoint</strong>

以上是Java 9中的try-with-resources有哪些改进?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除