V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
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 · Apr 26, 2015 · 4428 views
    This topic created in 4027 days ago, the information mentioned may be changed or developed.
    既然 open(from_file) 得到的 file object 没有保存到任何变量,已经没法再使用了,是不是执行完这一行就释放了呢?如果不是的话,这样写可不可以手动关闭呢:

    from_file = 'sample.txt'
    indata = open(from_file).read()
    open(from_file).close()
    7 replies    2015-05-25 22:56:29 +08:00
    Septembers
        1
    Septembers  
       Apr 26, 2015
    oclock
        2
    oclock  
       Apr 26, 2015
    read()执行完就被gc,因为*open(from_file)*没有被引用
    喜欢oneliner可以那么写
    laoyuan
        3
    laoyuan  
    OP
       Apr 26, 2015
    @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  
       Apr 27, 2015 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
       Apr 27, 2015
    @Sylv 是啊,所以才有脑洞大开的 open(from_file).close() 这种写法
    ryanking8215
        6
    ryanking8215  
       Apr 27, 2015
    @oclock gc是释放垃圾内存,不是资源,你这样还占着一个文件描述符。
    @Septembers 正解姿势,我喜欢。
    czy1996
        7
    czy1996  
       May 25, 2015
    @ryanking8215 请教一下,还是不太明白,笨办法学python里说这样写的话read()一旦运行就被关掉了。
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   847 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 59ms · UTC 22:38 · PVG 06:38 · LAX 15:38 · JFK 18:38
    ♥ Do have faith in what you're doing.