with...as...
生活随笔
收集整理的這篇文章主要介紹了
with...as...
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
原文鏈接
With語(yǔ)句是什么? 有一些任務(wù),可能事先需要設(shè)置,事后做清理工作。對(duì)于這種場(chǎng)景,Python的with語(yǔ)句提供了一種非常方便的處理方式。一個(gè)很好的例子是文件處理,你需要獲取一個(gè)文件句柄,從文件中讀取數(shù)據(jù),然后關(guān)閉文件句柄。 如果不用with語(yǔ)句,代碼如下: 1 file = open("/tmp/foo.txt") 2 data = file.read() 3 file.close() 這里有兩個(gè)問(wèn)題。一是可能忘記關(guān)閉文件句柄;二是文件讀取數(shù)據(jù)發(fā)生異常,沒(méi)有進(jìn)行任何處理。下面是處理異常的加強(qiáng)版本: 1 file = open("/tmp/foo.txt") 2 try: 3 data = file.read() 4 finally: 5 file.close() 雖然這段代碼運(yùn)行良好,但是太冗長(zhǎng)了。這時(shí)候就是with一展身手的時(shí)候了。除了有更優(yōu)雅的語(yǔ)法,with還可以很好的處理上下文環(huán)境產(chǎn)生的異常。下面是with版本的代碼: 1 with open("/tmp/foo.txt") as file: 2 data = file.read()
With語(yǔ)句是什么? 有一些任務(wù),可能事先需要設(shè)置,事后做清理工作。對(duì)于這種場(chǎng)景,Python的with語(yǔ)句提供了一種非常方便的處理方式。一個(gè)很好的例子是文件處理,你需要獲取一個(gè)文件句柄,從文件中讀取數(shù)據(jù),然后關(guān)閉文件句柄。 如果不用with語(yǔ)句,代碼如下: 1 file = open("/tmp/foo.txt") 2 data = file.read() 3 file.close() 這里有兩個(gè)問(wèn)題。一是可能忘記關(guān)閉文件句柄;二是文件讀取數(shù)據(jù)發(fā)生異常,沒(méi)有進(jìn)行任何處理。下面是處理異常的加強(qiáng)版本: 1 file = open("/tmp/foo.txt") 2 try: 3 data = file.read() 4 finally: 5 file.close() 雖然這段代碼運(yùn)行良好,但是太冗長(zhǎng)了。這時(shí)候就是with一展身手的時(shí)候了。除了有更優(yōu)雅的語(yǔ)法,with還可以很好的處理上下文環(huán)境產(chǎn)生的異常。下面是with版本的代碼: 1 with open("/tmp/foo.txt") as file: 2 data = file.read()
with如何工作?
這看起來(lái)充滿魔法,但不僅僅是魔法,Python對(duì)with的處理還很聰明。基本思想是with所求值的對(duì)象必須有一個(gè)__enter__()方法,一個(gè)__exit__()方法。緊跟with后面的語(yǔ)句被求值后,返回對(duì)象的__enter__()方法被調(diào)用,這個(gè)方法的返回值將被賦值給as后面的變量。當(dāng)with后面的代碼塊全部被執(zhí)行完之后,將調(diào)用前面返回對(duì)象的__exit__()方法。下面例子可以具體說(shuō)明with如何工作 1 #!/usr/bin/env python 2 # with_example01.py 3 4 class Sample: 5 def __enter__(self): 6 print "In __enter__()" 7 return "Foo" 8 9 def __exit__(self, type, value, trace): 10 print "In __exit__()" 11 12 def get_sample(): 13 return Sample() 14 15 with get_sample() as sample: 16 print "sample:", sample 運(yùn)行代碼,輸出如下 1 In __enter__() 2 sample: Foo 3 In __exit__() 正如你看到的, 1. __enter__()方法被執(zhí)行 2. __enter__()方法返回的值 - 這個(gè)例子中是"Foo",賦值給變量'sample' 3. 執(zhí)行代碼塊,打印變量"sample"的值為 "Foo" 4. __exit__()方法被調(diào)用 with真正強(qiáng)大之處是它可以處理異常。可能你已經(jīng)注意到Sample類的__exit__方法有三個(gè)參數(shù)- val, type 和 trace。 這些參數(shù)在異常處理中相當(dāng)有用。我們來(lái)改一下代碼,看看具體如何工作的。 1 #!/usr/bin/env python 2 # with_example02.py 3 4 class Sample: 5 def __enter__(self): 6 return self 7 8 def __exit__(self, type, value, trace): 9 print "type:", type 10 print "value:", value 11 print "trace:", trace 12 13 def do_something(self): 14 bar = 1/0 15 return bar + 10 16 17 with Sample() as sample: 18 sample.do_something() 這個(gè)例子中,with后面的get_sample()變成了Sample()。這沒(méi)有任何關(guān)系,只要緊跟with后面的語(yǔ)句所返回的對(duì)象有__enter__()和__exit__()方法即可。此例中,Sample()的__enter__()方法返回新創(chuàng)建的Sample對(duì)象,并賦值給變量sample。 代碼執(zhí)行后: 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 實(shí)際上,在with后面的代碼塊拋出任何異常時(shí),__exit__()方法被執(zhí)行。正如例子所示,異常拋出時(shí),與之關(guān)聯(lián)的type,value和stack trace傳給__exit__()方法,因此拋出的ZeroDivisionError異常被打印出來(lái)了。開(kāi)發(fā)庫(kù)時(shí),清理資源,關(guān)閉文件等等操作,都可以放在__exit__方法當(dāng)中。 因此,Python的with語(yǔ)句是提供一個(gè)有效的機(jī)制,讓代碼更簡(jiǎn)練,同時(shí)在異常產(chǎn)生時(shí),清理工作更簡(jiǎn)單。轉(zhuǎn)載于:https://www.cnblogs.com/Lunais/p/8867644.html
總結(jié)
以上是生活随笔為你收集整理的with...as...的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 常用的MIME类型
- 下一篇: 08-cmake语法-set()