您好,登錄后才能下訂單哦!
本文實例講述了Python裝飾器模式定義與用法。分享給大家供大家參考,具體如下:
裝飾器模式定義:動態地給一個對象添加一些額外的職責。
在Python中Decorator mode可以按照像其它編程語言如C++, Java等的樣子來實現,但是Python在應用裝飾概念方面的能力上遠不止于此,Python提供了一個語法和一個編程特性來加強這方面的功能。
首先需要了解一下Python中閉包的概念:如果在一個內部函數里,對在外部作用域(但不是在全局作用域)的變量進行引用,那么內部函數就被認為是閉包(closure)。
def makeblod(fn): def wrapped(): return '<b>'+fn()+'</b>' return wrapped def makeitalic(fn): def wrapped(): return '<i>'+fn()+'</i>' return wrapped @makeblod @makeitalic def hello(): return 'hello world' print hello()
運行結果:
<b><i>hello world</i></b>
def deco(arg): def _deco(func): def __deco(): print "before %s called [%s]." % (func.__name__, arg) func() print "after %s called [%s]." % (func.__name__, arg) return __deco return _deco @deco("mymodule") def myfunc(): print "myfunc() called." myfunc()
運行結果:
before myfunc called [mymodule].
myfunc() called.
after myfunc called [mymodule].
關于閉包學習可參考:https://www.jb51.net/article/54498.htm
更多關于Python相關內容可查看本站專題:《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》及《Python入門與進階經典教程》
希望本文所述對大家Python程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。