测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Python中的魔法函数__enter__/__exit__的使用方法
收藏本文
作者:redrose2100 类别: 日期:2022-05-10 01:43:56 阅读:952 次 消耗积分:0 分
[TOC] # 1、with上下文管理器的用法 * with用的最多的可能就是打开文件,读写文件的场景,如下代码: ```python with open("demo.txt","w+",encoding="utf8") as f: f.write("hello world") ``` 其等同于如下代码: ```python f=open("demo.txt","w+",encoding="utf8") f.write("hello world") f.close() ``` 使用with语句的时候不需要显式的去关闭文件资源,因为它自动会关闭,那么这个自动关闭是怎么实现的呢,这其实就是__enter__和__exit__魔法函数在起作用 # 2、\_\_enter__和__exit__魔法函数的工作原理 * 以上面with as 的形式,那么首先是进入类函数中__enter__魔法函数,__enter__魔法函数返回结果赋值给as后面的变量,当with as 语句结束时,会自动调用__exit__魔法函数 下面重写写一个类似open的类,来实现with as 打开文件读写文件的实例,如下: ```python class OpenFile(object): def __init__(self,file_name="",mode="r",encoding="utf8",**kwargs): print("-----------------in init------------------") self.__file=open(file_name,mode,encoding=encoding) def __enter__(self): print("-----------------in enter ----------------") return self def write(self,ctx): print("-----------------begin write-------------") self.__file.write(ctx) print("-----------------finish write-------------") def __exit__(self,exec_type,exec_value,exec_tb): print("-----------------in exit------------------") self.__file.close() with OpenFile("demo.txt","w+",encoding="utf8") as f: f.write("hello world") ``` 执行结果如下: ```python -----------------in init------------------ -----------------in enter ---------------- -----------------begin write------------- -----------------finish write------------- -----------------in exit------------------ ``` 因此,如果想实现一个自定义的上下文管理器,只需要在自定义类中实现这两个魔法函数即可,这里有一个关键点需要理解的就是with as 语句中as 后面的变量就是__enter__魔法函数返回值,理解了这一点,就很容易实现自己的上下文管理器了
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/128
上一篇:
Python中的魔法函数__getitem__/__setitem__/__delitem__的使用方法
下一篇:
Python中魔法函数__call__的使用方法
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件