深入浅析python with语句简介
作者:John_Lan_2008 时间:2022-06-30 20:23:16
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 contextmanager
class 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")
@contextmanager
def 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语句简介网站的支持!
来源:https://blog.csdn.net/John_Lan_2008/article/details/79880781
标签:python,with,语句
0
投稿
猜你喜欢
正确理解python中的关键字“with”与上下文管理器
2022-10-26 18:05:02
详解Python程序与服务器连接的WSGI接口
2021-11-19 03:57:10
如何修改vue-treeSelect的高度
2024-05-08 09:33:55
pygame实现烟雨蒙蒙下彩虹雨
2023-05-07 01:19:36
基于Python制作一个文件解压缩工具
2021-01-10 08:00:13
详解Go语言变量作用域
2023-08-05 03:25:43
Win11平台安装和配置NeoVim0.8.2编辑器搭建Python3开发环境详细过程(2023最新攻略)
2023-06-06 21:28:07
python K近邻算法的kd树实现
2022-01-09 19:05:43
jQuery 1.4新特性及其变化(上)
2010-01-18 16:33:00
Python多线程threading join和守护线程setDeamon原理详解
2022-05-25 18:09:39
关于ASP eof与bof 区别分析
2011-03-11 11:14:00
Python数据提取-lxml模块
2022-04-03 15:15:19
ASP.NET中使用SQL存储过程的方法
2007-08-24 09:31:00
JS CSS制作饱含热情的镶边文字闪烁特效
2024-04-16 09:04:51
python实现图片压缩代码实例
2023-07-11 06:35:22
轻松学习jQuery插件EasyUI EasyUI创建RSS Feed阅读器
2024-05-03 15:31:44
不能忽略c#中的using和as操作符的用处
2024-03-23 08:08:41
asp base64 utf-8为了兼容asp.net的base64
2011-03-10 10:47:00
python字符串格式化方式解析
2021-06-22 14:01:46
python生成器用法实例详解
2023-01-24 12:46:58