Chinaunix首页 | 论坛 | 博客
  • 博客访问: 126485
  • 博文数量: 83
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 585
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-13 10:26
个人简介

- 毅力与勇气是事业的双飞翼; - 在尝试中成长,在失败中奋起。 - 概览 -> 细读 -> 概览 - 书不在多,在于精。

文章分类

全部博文(83)

文章存档

2016年(2)

2015年(6)

2014年(75)

我的朋友

分类: Python/Ruby

2014-07-14 16:17:37

转自:http://sdqali.in/blog/2012/07/09/understanding-pythons-with/

Python’s with statement provides a very convenient way of dealing with the situation where you have to do a setup and teardown to make something happen. A very good example for this is the situation where you want to gain a handler to a file, read data from the file and the close the file handler.

Without the with statement, one would write something along the lines of:

点击(此处)折叠或打开

  1. file = open("/tmp/foo.txt")
  2. data = file.read()
  3. file.close()
There are two annoying things here. First, you end up forgetting to close the file handler. The second is how to handle exceptions that may occur once the file handler has been obtained. One could write something like this to get around this:

点击(此处)折叠或打开

  1. file = open("/tmp/foo.txt")
  2. try:
  3.     data = file.read()
  4. finally:
  5.     file.close()
While this works well, it is unnecessarily verbose. This is where with is useful. The good thing about with apart from the better syntax is that it is very good handling exceptions. The above code would look like this, when using with:

点击(此处)折叠或打开

  1. with open("/tmp/foo.txt") as file:
  2.     data = file.read()

How does it work?

While this might look like magic, the way Python handles with is more clever than magic. The basic idea is that the statement after with has to evaluate an object that responds to an __enter__() as well as an __exit__() function.

After the statement that follows with is evaluated, the __enter__() function on the resulting object is called. The value returned by this function is assigned to the variable following as. After every statement in the block is evaluated, the __exit__() function is called.

This can be demonstrated with the following example:

点击(此处)折叠或打开

  1. #!/usr/bin/env python
  2. # with_example01.py

  3. class Sample:
  4.    def __enter__(self):
  5.        print "In __enter__()"
  6.        return "Foo"
  7.  
  8.    def __exit__(self, type, value, trace):
  9.        print "In __exit__()"

  10. def get_sample():
  11.    return Sample()

  12. with get_sample() as sample:
  13.    print "sample:", sample
When executed, this will result in:

点击(此处)折叠或打开

  1. bash-3.2$ ./with_example01.py
  2. In __enter__()
  3. sample: Foo
  4. In __exit__()

As you can see,

  1. The __enter__() function is executed
  2. The value returned by it – in this case "Foo" is assigned to sample
  3. The body of the block is executed, thereby printing the value of sample ie. "Foo"
  4. The __exit__() function is called.

What makes with really powerful is the fact that it can handle exceptions. You would have noticed that the __exit__() function for Sample takes three arguments – val, type and trace. These are useful in exception handling. Let’s see how this works by modifying the above example.

点击(此处)折叠或打开

  1. #!/usr/bin/env python
  2. # with_example02.py
  3.  
  4.  
  5. class Sample:
  6.     def __enter__(self):
  7.         return self
  8.  
  9.     def __exit__(self, type, value, trace):
  10.         print "type:", type
  11.         print "value:", value
  12.         print "trace:", trace
  13.  
  14.     def do_something(self):
  15.         bar = 1/0
  16.         return bar + 10
  17.  
  18. with Sample() as sample:
  19.     sample.do_something()

Notice how in this example, instead of get_sample(), with takes Sample(). It does not matter, as long as the statement that follows with evaluates to an object that has an __enter__() and __exit__() functions. In this case, Sample()’s __enter__() returns the newly created instance of Sample and that is what gets passed to sample.

When executed:

点击(此处)折叠或打开

  1. bash-3.2$ ./with_example02.py
  2. type: <type 'exceptions.ZeroDivisionError'>
  3. value: integer division or modulo by zero
  4. trace: <traceback object at 0x1004a8128>
  5. Traceback (most recent call last):
  6.   File "./with_example02.py", line 19, in <module>
  7.     sample.do_something()
  8.   File "./with_example02.py", line 15, in do_something
  9.     bar = 1/0
  10. ZeroDivisionError: integer division or modulo by zero

Essentially, if there are exceptions being thrown from anywhere inside the block, the __exit__() function for the object is called. As you can see, the type, value and the stack trace associated with the exception thrown is passed to this function. In this case, you can see that there was a ZeroDivisionError exception being thrown. People implementing libraries can write code that clean up resources, close files etc. in their __exit__() functions.

Thus, Python’s with is a nifty construct that makes code a little less verbose and makes cleaning up during exceptions a bit easier.

I have put the code examples given here on .
 








阅读(404) | 评论(0) | 转发(0) |
0

上一篇:Python的with语句

下一篇:MySQl 存储过程

给主人留下些什么吧!~~