Python高级笔记(八)with、上下文管理器

 


1. 上下文管理器

__enter__()方法返回资源对象,__exit__()方法处理一些清除资源

如:系统资源:文件、数据库链接、Socket等这些资源执行完业务逻辑之后,必须要关闭资源

复制代码
#!/usr/bin/python3
#-*- coding:utf-8 -*-

class File(object):

    def __init__(self, filename, mode):
        self.filename = filename
        self.mode = mode
    
    def __enter__(self):
        print("entering....")
        self.f = open(self.filename, self.mode)
        return self.f
    
    def __exit__(self, *args):
        print("will exit")
        self.f.close()

with File("out.txt", 'w') as f:
    print("writing....")
    f.write('hello, python')
复制代码
entering....
writing....
will exit

2. 使用 @contextmanager

复制代码
from contextlib import contextmanager

@contextmanager
def my_open(path, mode):
    f = open(path, mode)
    yield f
    f.close()

with my_open('out.txt', 'w') as f:
    f.write("hello, test")
复制代码

 

posted @   douzujun  阅读(198)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· DeepSeek火爆全网,官网宕机?本地部署一个随便玩「LLM探索」
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 上周热点回顾(1.20-1.26)
· 【译】.NET 升级助手现在支持升级到集中式包管理
历史上的今天:
2017-05-08 Packet Tracer 5.0实验(一) 交换机的Telnet远程登录设置
点击右上角即可分享
微信分享提示