V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
laoyuan
V2EX  ›  Python

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

  •  
  •   laoyuan ·
    laoyuan · 2015-04-26 14:09:27 +08:00 · 3547 次点击
    这是一个创建于 3288 天前的主题,其中的信息可能已经有所发展或是发生改变。
    既然 open(from_file) 得到的 file object 没有保存到任何变量,已经没法再使用了,是不是执行完这一行就释放了呢?如果不是的话,这样写可不可以手动关闭呢:

    from_file = 'sample.txt'
    indata = open(from_file).read()
    open(from_file).close()
    7 条回复    2015-05-25 22:56:29 +08:00
    Septembers
        1
    Septembers  
       2015-04-26 15:29:48 +08:00
    oclock
        2
    oclock  
       2015-04-26 20:18:13 +08:00
    read()执行完就被gc,因为*open(from_file)*没有被引用
    喜欢oneliner可以那么写
    laoyuan
        3
    laoyuan  
    OP
       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
        4
    Sylv  
       2015-04-27 02:48:30 +08:00 via iPhone
    "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
        5
    laoyuan  
    OP
       2015-04-27 05:35:25 +08:00
    @Sylv 是啊,所以才有脑洞大开的 open(from_file).close() 这种写法
    ryanking8215
        6
    ryanking8215  
       2015-04-27 15:35:24 +08:00
    @oclock gc是释放垃圾内存,不是资源,你这样还占着一个文件描述符。
    @Septembers 正解姿势,我喜欢。
    czy1996
        7
    czy1996  
       2015-05-25 22:56:29 +08:00
    @ryanking8215 请教一下,还是不太明白,笨办法学python里说这样写的话read()一旦运行就被关掉了。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2436 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 01:06 · PVG 09:06 · LAX 18:06 · JFK 21:06
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.