軟體工程師的工作筆記
網頁
C++
首頁
vim
extjs
2015年7月4日 星期六
[Python] decorator的等價寫法
主題: decorator的等價寫法
class A(object):
@property
def func(self):
...
同
class A(object):
def func(self):
...
func = property(func)
換句話說這時候 func經過property之後
1. 從單純的func變成為property
2. func則變為 class variable (不是intance variable)
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言