深入浅析python with语句简介
Python  /  管理员 发布于 7年前   145
with 语句是从 Python 2.5 开始引入的一种与异常处理相关的功能(2.5 版本中要通过 from __future__ import with_statement 导入后才可以使用),从 2.6 版本开始缺省可用(参考 What's new in Python 2.6? 中 with 语句相关部分介绍)。with 语句适用于对资源进行访问的场合,确保不管使用过程中是否发生异常都会执行必要的“清理”操作,释放资源,比如文件使用后自动关闭、线程中锁的自动获取和释放等。
术语
要使用 with 语句,首先要明白上下文管理器这一概念。有了上下文管理器,with 语句才能工作。
在python中读写操作资源,最后需要释放资源。可以使用try…finally结构实现资源的正确释放,python提供了一个with语句能更简便的实现释放资源。
1. python像文件的操作open等已经可以直接使用with语句
2. 可以自定义一个支持with语句对象
3. 使用contextlib也可以使用with语句对象
4. 针对需要close操作的对象with的使用
示例代码中有4种使用标注
# 自定义支持with语句的对象class DummyRes: def __init__(self, tag): self.tag = tag def __enter__(self): print("Enter >>> {}".format(self.tag)) return self def __exit__(self, exc_type, exc_value, exc_tb): print("Exit <<< {}".format(self.tag)) if exc_tb is None: print("Exit without Exception {}".format(self.tag)) return False else: print("Exit with Exception {}".format(self.tag)) return True# 支持closing 上下文with语句对象class Closing: def __init__(self, thing): self.thing = thing def __enter__(self): return self def __exit__(self, exc_type, exc_value, exc_tb): self.thing.close()class ClosingDemo: def __init__(self): self.acquire() def acquire(self): print("Acquire RES") def close(self): print("Close RES")from contextlib import contextmanagerclass ContextDemo: def __init__(self): print("Context Demo init") raise Exception print("Context Demo init") def print(self): print("Context Demo print 1") #raise Exception print("Context Demo print 2") def close(self): print("Context Demo close")def context_demo(): print("context demo in") raise Exception print("context demo out")@contextmanagerdef demo(): print("Allocate Resoures") try: yield context_demo finally: print("raise exception") #yield "*** contextmanager demo ***" print("Free Resoures")if __name__ == "__main__": # 1. 使用with语句 (自动关闭文件) with open("test.txt", "w") as f: f.write("write test") # 2. 自动定义with语句 with DummyRes("test") as res: print("With body 1") raise Exception print("With body 2") # 3. 利用contextlib定义with语句 with demo(): print("exc demo") # 4. closing 上下文 (适合有close操作的情况) with Closing(ClosingDemo()): print("Use Resoures")
总结
以上所述是小编给大家介绍的python with语句简介,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对站的支持!
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号