indata = open(from_file).read() 这种写法 open 得到的 file object 是执行完这一句就释放了还是脚本结束释放的?

2015-04-26 14:09:27 +08:00
 laoyuan
既然 open(from_file) 得到的 file object 没有保存到任何变量,已经没法再使用了,是不是执行完这一行就释放了呢?如果不是的话,这样写可不可以手动关闭呢:

from_file = 'sample.txt'
indata = open(from_file).read()
open(from_file).close()
3562 次点击
所在节点    Python
7 条回复
Septembers
2015-04-26 15:29:48 +08:00
oclock
2015-04-26 20:18:13 +08:00
read()执行完就被gc,因为*open(from_file)*没有被引用
喜欢oneliner可以那么写
laoyuan
2015-04-26 21:58:19 +08:00
@oclock 我感觉没有立刻回收呢,下面这三行print 地址都是相同的

from_file = 'sample.txt'
print open(from_file)
print open(from_file)
indata = open(from_file).read()
print open(from_file)
Sylv
2015-04-27 02:48:30 +08:00
"Close is always necessary when dealing with files, it is not a good idea to leave open file handles all over the place. They will eventually be closed when the file object is garbage collected but you do not know when that will be and in the mean time you will be wasting system resources by holding to file handles you no longer need."
laoyuan
2015-04-27 05:35:25 +08:00
@Sylv 是啊,所以才有脑洞大开的 open(from_file).close() 这种写法
ryanking8215
2015-04-27 15:35:24 +08:00
@oclock gc是释放垃圾内存,不是资源,你这样还占着一个文件描述符。
@Septembers 正解姿势,我喜欢。
czy1996
2015-05-25 22:56:29 +08:00
@ryanking8215 请教一下,还是不太明白,笨办法学python里说这样写的话read()一旦运行就被关掉了。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/186435

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX