前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >使用try-with-resource需要注意的地方

使用try-with-resource需要注意的地方

作者头像
johnhuster的分享
发布2022-03-28 20:19:29
4760
发布2022-03-28 20:19:29
举报
文章被收录于专栏:johnhuster

try-with-resource是JDK7引入的语法糖,可以简化Autocloseable资源类的关闭过程,比如JDK7以前下面的代码:

代码语言:javascript
复制
		File file = new File("d:/tmp/1.txt");
		FileInputStream fis = null;
		try {
			fis = new FileInputStream(file);
			xxxxx
            xxxxx
		} catch (IOException e) {
			e.printStackTrace();
		}finally{
			if(fis != null){
				try {
					fis.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}

上面是一段读取文件内容的示意代码,为了防止在try代码块中出现异常后导致的资源泄露问题,在finally代码块中一般处理资源的关闭事项,JDK之后上面的代码就可以简化成下面的写法:

代码语言:javascript
复制
		File file = new File("d:/tmp/1.txt");
		try(FileInputStream fis = new FileInputStream(file);) {
			fis.read();
		} catch (IOException e) {
			e.printStackTrace();
		}finally{
		}

可以看出是简化了不少,之所以称之为语法糖,是因为编译成class文件后实际的代码就不是这样的了,编译过程中会自动添加资源的关闭处理,上面的代码编译出的class文件使用javap进行反编译后是下面这样的

代码语言:javascript
复制
		File file = new File("d:/tmp/1.txt");

		try {
			Throwable var2 = null;
			Object var3 = null;

			try {
				FileInputStream fis = new FileInputStream(file);
                xxx
                xxxx
			} catch (Throwable var12) {
				if (var2 == null) {
					var2 = var12;
				} else if (var2 != var12) {
					var2.addSuppressed(var12);
				}

				throw var2;
			}
		} catch (IOException var13) {
			var13.printStackTrace();
		}

好了,上面已经引入今天的主题,try-with-resource,但是仍然有需要注意的地方,比如下面的代码:

代码语言:javascript
复制
	private static class MyResource implements AutoCloseable{

		private MyResource1 res;
		
		public MyResource(MyResource1 res){
			this.res = res;
		}
		
		@Override
		public void close() throws Exception {
			System.out.println("MyResource自动关闭");
			Integer a = null;
			a.toString();
			this.res.close();
		}
	}
	
	private static class MyResource1 implements AutoCloseable{

		@Override
		public void close() throws Exception {
			System.out.println("MyResource1自动关闭");
		}
	}
	
	
	@Test
	public void test() throws Exception{
		try(
				MyResource r = new MyResource(new MyResource1())){
			Integer a = null ;
			a.toString();
		}
	}

执行上面的代码,由于MyResource的close方法中出现了异常,此时创建的MyResource1就不会被关闭,从而出现资源泄露情况,为了规避这个问题,为了规避这个问题,我们需要创建的实现AutoCloseable接口的对象单独创建,如下面所示:

代码语言:javascript
复制
		try(
				MyResource1 res= new MyResource1();
				MyResource r = new MyResource(res)){
			Integer a = null ;
			a.toString();
		}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/02/17 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档