深入浅析python with语句简介


Posted in Python onApril 11, 2018

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语句简介,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Python 相关文章推荐
python生成随机mac地址的方法
Mar 16 Python
在Python的Django框架下使用django-tagging的教程
May 30 Python
Eclipse中Python开发环境搭建简单教程
Mar 23 Python
Python文本相似性计算之编辑距离详解
Nov 28 Python
详解PyTorch批训练及优化器比较
Apr 28 Python
python自动化报告的输出用例详解
May 30 Python
教你如何编写、保存与运行Python程序的方法
Jul 12 Python
使用Python快乐学数学Github万星神器Manim简介
Aug 07 Python
jupyter notebook插入本地图片的实现
Apr 13 Python
keras 实现轻量级网络ShuffleNet教程
Jun 19 Python
pycharm专业版远程登录服务器的详细教程
Sep 15 Python
总结python多进程multiprocessing的相关知识
Jun 29 Python
python实现微信自动回复功能
Apr 11 #Python
Python实现检测文件MD5值的方法示例
Apr 11 #Python
python 输出上个月的月末日期实例
Apr 11 #Python
Python简单计算文件MD5值的方法示例
Apr 11 #Python
pandas 获取季度,月度,年度首尾日期的方法
Apr 11 #Python
python+pandas生成指定日期和重采样的方法
Apr 11 #Python
python dataframe astype 字段类型转换方法
Apr 11 #Python
You might like
php二维数组排序方法(array_multisort usort)
2013/12/25 PHP
WordPress中is_singular()函数简介
2015/02/05 PHP
不懂JavaScript应该怎样学
2008/04/16 Javascript
setInterval计时器不准的问题解决方法
2014/05/08 Javascript
Javascript基础教程之定义和调用函数
2015/01/18 Javascript
JS实现的新浪微博大厅文字内容滚动效果代码
2015/11/05 Javascript
javascript实现图片轮播效果
2016/01/20 Javascript
javascript下使用Promise封装FileReader
2016/02/19 Javascript
jQuery 翻页组件yunm.pager.js实现div局部刷新的思路
2016/08/11 Javascript
jQuery实现点击任意位置弹出层外关闭弹出层效果
2016/10/19 Javascript
输入框点击时边框变色效果的实现方法
2016/12/26 Javascript
详解webpack+angular2开发环境搭建
2017/06/28 Javascript
使用 vue.js 构建大型单页应用
2018/02/10 Javascript
Vue绑定内联样式问题
2018/10/17 Javascript
JavaScript ES6常用基础知识总结
2019/02/09 Javascript
VsCode与Node.js知识点详解
2019/09/05 Javascript
jquery使用echarts实现有向图可视化功能示例
2019/11/25 jQuery
Vue 路由间跳转和新开窗口的方式(query、params)
2019/12/25 Javascript
[15:35]教你分分钟做大人:天怒法师
2014/10/30 DOTA
[02:29]大剑、皮鞭、女装,这届DOTA2勇士令状里都有
2020/07/17 DOTA
使用Python神器对付12306变态验证码
2016/01/05 Python
基于pip install django失败时的解决方法
2018/06/12 Python
python绘制圆柱体的方法
2018/07/02 Python
python获取点击的坐标画图形的方法
2019/07/09 Python
Python requests模块session代码实例
2020/04/14 Python
Python如何自动获取目标网站最新通知
2020/06/18 Python
Python读取ini配置文件传参的简单示例
2021/01/05 Python
Python爬虫scrapy框架Cookie池(微博Cookie池)的使用
2021/01/13 Python
CSS书写规范、顺序和命名规则
2014/03/06 HTML / CSS
HTML5单页面手势滑屏切换原理
2016/03/21 HTML / CSS
营销主管自我评价怎么写
2013/09/19 职场文书
高中军训广播稿
2014/01/14 职场文书
八年级美术教学反思
2014/02/02 职场文书
美术教师岗位职责
2014/03/18 职场文书
仓库保管员岗位职责
2015/02/09 职场文书
Python读取文件夹下的所有文件实例代码
2021/04/02 Python