当前位置:网站首页>别再在finally里面释放资源了,解锁个新姿势!
别再在finally里面释放资源了,解锁个新姿势!
2020-11-08 13:47:00 【osc_zq2o0u6t】
版权说明: 本文由博主原创,转载请注明出处。
原文地址: https://blog.csdn.net/qq_38688267/article/details/109511716
在我们编码过程中,不可避免的会用到于文件操作 IO 流、数据库连接等开销比较大的资源,用完之后需要通过 close 方法将其关闭,否则资源一直处于打开状态,可能会导致内存泄露等问题。
拿文件操作流举例,我们在使用时要try catch,用完了在finally中关闭,而关闭的时候还需要再try catch,可以说是非常麻烦了!代码如下:
/**传统写法**/
BufferedReader br = null;
try {
br = new BufferedReader(new FileReader(""));
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
// DO something
} finally {
if(br != null) {
try {
br.close();
} catch (IOException e) {
// DO something
}
}
}
而我们的新姿势是使用JDK1.7中的try-with-resources语法,直接上代码:
/**使用语法糖**/
try (BufferedReader br1 = new BufferedReader(new FileReader(""))) {
String line;
while ((line = br1.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
// DO something
}
代码是不是瞬间清爽了很多?赶紧用起来吧~
我们顺便再来刨根究底一下吧,看下他编译之后的样子:
try {
BufferedReader br1 = new BufferedReader(new FileReader(""));
Throwable var7 = null;
try {
String line;
try {
while((line = br1.readLine()) != null) {
System.out.println(line);
}
} catch (Throwable var32) {
var7 = var32;
throw var32;
}
} finally {
if (br1 != null) {
if (var7 != null) {
try {
br1.close();
} catch (Throwable var31) {
var7.addSuppressed(var31);
}
} else {
br1.close();
}
}
}
} catch (IOException var34) {
}
其实背后的原理也很简单,让编译器都帮我们做了关闭资源的工作而已。所以,再次印证了,语法糖的作用就是方便程序员的使用,最终还是要转成编译器认识的语言。
希望本文对大家有所帮助或启发。码字不易,觉得写的不错的可以点赞支持一下哦~
版权声明
本文为[osc_zq2o0u6t]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4360121/blog/4708185
边栏推荐
- Essential for back-end programmers: distributed transaction Basics
- PMP考试通过心得分享
- What can your cloud server do? What is the purpose of cloud server?
- 分布式文档存储数据库之MongoDB基础入门
- [Python 1-6] Python tutorial 1 -- number
- Android Basics - check box
- From a friend recently Ali, Tencent, meituan and other P7 Python development post interview questions
- PMP心得分享
- Ubuntu20.04 access FTP server garbled problem + upload files
- BCCOIN告诉您:年底最靠谱的投资项目是什么!
猜你喜欢

Improvement of rate limit for laravel8 update

谷歌开源能翻译101种语言的AI模型,只比Facebook多一种

I used Python to find out all the people who deleted my wechat and deleted them automatically

On monotonous stack

后端程序员必备:分布式事务基础篇

2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...

Flink从入门到真香(6、Flink实现UDF函数-实现更细粒度的控制流)

Improvement of maintenance mode of laravel8 update

Ali teaches you how to use the Internet of things platform! (Internet disk link attached)

Summary of template engine
随机推荐
When kubernetes encounters confidential computing, see how Alibaba protects the data in the container! (Internet disk link attached)
模板引擎的整理归纳
我们做了一个医疗版MNIST数据集,发现常见AutoML算法没那么好用
你的云服务器可以用来做什么?云服务器有什么用途?
值得一看!EMR弹性低成本离线大数据分析最佳实践(附网盘链接)
阿里出品!视觉计算开发者系列手册(附网盘链接)
Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
Rust : 性能测试criterion库
Google's AI model, which can translate 101 languages, is only one more than Facebook
Bccoin tells you: what is the most reliable investment project at the end of the year!
我用 Python 找出了删除我微信的所有人并将他们自动化删除了
It's worth seeing! EMR elastic low cost offline big data analysis best practice (with network disk link)
laravel8更新之维护模式改进
Introduction to mongodb foundation of distributed document storage database
Win10 terminal + WSL 2 installation and configuration guide, exquisite development experience
为什么 Schnorr 签名被誉为比特币 Segwit 后的最大技术更新
Ubuntu20.04下访问FTP服务器乱码问题+上传文件
【Python 1-6】Python教程之——数字
原创 | 数据资产确权浅议
C language I blog assignment 03