博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python的with...as的用法
阅读量:5977 次
发布时间:2019-06-20

本文共 930 字,大约阅读时间需要 3 分钟。

这个语法是用来代替传统的try...finally语法的。 

with EXPRESSION [ as VARIABLE] WITH-BLOCK 

基本思想是with所求值的对象必须有一个__enter__()方法,一个__exit__()方法。

紧跟with后面的语句被求值后,返回对象的__enter__()方法被调用,这个方法的返回值将被赋值给as后面的变量。当with后面的代码块全部被执行完之后,将调用前面返回对象的__exit__()方法。

[python]
  1. file = open("/tmp/foo.txt")  
  2. try:  
  3.     data = file.read()  
  4. finally:  
  5.     file.close()  

使用with...as...的方式替换,修改后的代码是:

[python]
  1. with open("/tmp/foo.txt") as file:  
  2.     data = file.read()  
[python]
  1. #!/usr/bin/env python  
  2. # with_example01.py  
  3.    
  4.    
  5. class Sample:  
  6.     def __enter__(self):  
  7.         print "In __enter__()"  
  8.         return "Foo"  
  9.    
  10.     def __exit__(self, type, value, trace):  
  11.         print "In __exit__()"  
  12.    
  13.    
  14. def get_sample():  
  15.     return Sample()  
  16.    
  17.    
  18. with get_sample() as sample:  
  19.     print "sample:", sample  
执行结果为
[python]
  1. In __enter__()  
  2. sample: Foo  
  3. In __exit__()  

1. __enter__()方法被执行

2. __enter__()方法返回的值 - 这个例子中是"Foo",赋值给变量'sample'

3. 执行代码块,打印变量"sample"的值为 "Foo"

4. __exit__()方法被调用with真正强大之处是它可以处理异常。可能你已经注意到Sample类的__exit__方法有三个参数- val, type 和 trace。这些参数在异常处理中相当有用。

转载地址:http://nysox.baihongyu.com/

你可能感兴趣的文章
一个动态ACL的案例
查看>>
openstack 之 windows server 2008镜像制作
查看>>
VI快捷键攻略
查看>>
Win server 2012 R2 文件服务器--(三)配额限制
查看>>
卓越质量管理成就创新高地 中关村软件园再出发
查看>>
linux rsync 远程同步
查看>>
httpd的manual列目录漏洞
查看>>
myeclipse2014破解过程
查看>>
漫谈几种反编译对抗技术
查看>>
Timer 和 TimerTask 例子
查看>>
Spring BOOT 集成 RabbitMq 实战操作(一)
查看>>
安装python3.5注意事项及相关命令
查看>>
进程通信之无名信号量
查看>>
并发串行调用接口
查看>>
Mongodb3.0.5副本集搭建及spring和java连接副本集配置
查看>>
FileStream大文件复制
查看>>
TDD 的本质不是 TDD
查看>>
linux命令学习——ps
查看>>
freemark 判断list是否为空
查看>>
JS的一些扩展:String、StringBuilder、Uri
查看>>