參考:
with語句是什麼?
with 語句適用於對資源進行訪問的場合,確保不管使用過程中是否發生異常都會執行必要的「清理」操作,釋放資源,比如檔案使用後自動關閉/執行緒中鎖的自動獲取和釋放等。有一些任務,可能事先需要設定,事後做清理工作。對於這種場景,python的with語句提供了一種非常方便的處理方式。乙個很好的例子是檔案處理,你需要獲取乙個檔案控制代碼,從檔案中讀取資料,然後關閉檔案控制代碼。
如果不用with語句,**如下:
file = open("/tmp/foo.txt")data =file.read()
file.close()
這裡有兩個問題。一是可能忘記關閉檔案控制代碼;二是檔案讀取資料發生異常,沒有進行任何處理。下面是處理異常的加強版本:
file = open("/tmp/foo.txt")try:
data =file.read()
finally:
file.close()
雖然這段**執行良好,但是太冗長了。這時候就是with一展身手的時候了。除了有更優雅的語法,with還可以很好的處理上下文環境產生的異常。下面是with版本的**:
with open("/tmp/foo.txt") as file:with如何工作?data = file.read()
這看起來充滿魔法,但不僅僅是魔法,python對with的處理還很聰明。基本思想是with所求值的物件必須有乙個__enter__()方法,乙個__exit__()方法。緊跟with後面的語句被求值後,返回物件的__enter__()方法被呼叫,這個方法的返回值將被賦值給as後面的變數。當with後面的**塊全部被執行完之後,將呼叫前面返回物件的__exit__()方法。
下面例子可以具體說明with如何工作:
#!/usr/bin/env python#with_example01.pyclasssample:
def __enter__(self):
print "in __enter__()"
return "foo"
def __exit__(self, type, value, trace):
print "in __exit__()"
defget_sample():
returnsample()
with get_sample() as sample:
print "sample:", sample
執行**,輸出如下
in __enter__()sample: foo
in __exit__()
正如你看到的,1. __enter__()方法被執行
2. __enter__()方法返回的值 - 這個例子中是"foo",賦值給變數'sample'
3. 執行**塊,列印變數"sample"的值為 "foo"
4. __exit__()方法被呼叫
with真正強大之處是它可以處理異常。可能你已經注意到sample類的__exit__方法有三個引數- val, type 和 trace。 這些引數在異常處理中相當有用。我們來改一下**,看看具體如何工作的。
#!/usr/bin/env python#with_example02.pyclasssample:
def __enter__(self):
returnself
def __exit__(self, type, value, trace):
print "type:", type
print "value:", value
print "trace:", trace
defdo_something(self):
bar = 1/0
return bar + 10with sample() as sample:
sample.do_something()
這個例子中,with後面的get_sample()變成了sample()。這沒有任何關係,只要緊跟with後面的語句所返回的物件有__enter__()和__exit__()方法即可。此例中,sample()的__enter__()方法返回新建立的sample物件,並賦值給變數sample。**執行後:
bash-3.2$ ./with_example02.pytype: 'exceptions.zerodivisionerror'>value: integer division ormodulo by zero
trace: traceback (most recent call last):
file "./with_example02.py", line 19, in sample.do_something()
file "./with_example02.py", line 15, indo_something
bar = 1/0
zerodivisionerror: integer division or modulo by zero
實際上,在with後面的**塊丟擲任何異常時,__exit__()方法被執行。正如例子所示,異常丟擲時,與之關聯的type,value和stack trace傳給__exit__()方法,因此丟擲的zerodivisionerror異常被列印出來了。開發庫時,清理資源,關閉檔案等等操作,都可以放在__exit__方法當中。因此,python的with語句是提供乙個有效的機制,讓**更簡練,同時在異常產生時,清理工作更簡單。
比如,舉乙個之前聽的課程裡的例子:
SQL語句 with as 用法
一直以來很少在sql中使用過with as 的用法,現在打算記錄這條語句的使用方法。with as短語,也叫做子查詢部分 subquery factoring 是用來定義乙個sql片斷,該sql片斷會被整個sql語句所用到。這個語句算是公用表表示式 cte 比如 with a as select f...
python 中 with as的用法
with從python 2.5就有,需要from future import with statement。自python 2.6開始,成為預設關鍵字。在what s new in python2.6 3.0中,明確提到 the with statement is a control flow st...
Python中with as的用法
這個語法是用來代替傳統的try.finally語法的。with expression as variable with block 基本思想是with所求值的物件必須有乙個 enter 方法,乙個 exit 方法。緊跟with後面的語句被求值後,返回物件的 enter 方法被呼叫,這個方法的返回值將...