Python学習--装飾器
一、最も簡単な関数、追加機能の準備
二、装飾関数を用いて、関数の実行前と実行後にそれぞれ追加機能を付加する
三、文法糖@を使って関数を飾る
四、埋め込み包装関数を使用して、新しい関数が呼び出されるたびに
五、パラメータ付き関数を装飾する
六、パラメータ数が不確定な関数を装飾する
七、装飾器にパラメータを持たせる
八、装飾器に類パラメータを持たせる
九、アクセラレータはクラスパラメータを持ち、共通クラスを他のpyファイルに分割すると同時に、1つの関数に複数のアクセラレータを適用することを実証した.
参考資料
1.Pythonアクセサリー学習http://blog.csdn.net/thy38/article/details/4471421
2.Python装飾器とフェース向けプログラミングhttp://www.cnblogs.com/huxi/archive/2011/03/01/1967600.html
''' 1: , '''
def myfunc():
print('myfunc() called')
myfunc()
myfunc()
二、装飾関数を用いて、関数の実行前と実行後にそれぞれ追加機能を付加する
''' 2: ( )
,
: myfunc = deco(myfunc)'''
def deco(func):
print("before myfunc() called.")
func()
print(" after myfunc() called.")
return func
def myfunc():
print(" myfunc() called.")
myfunc = deco(myfunc)
myfunc()
myfunc()
三、文法糖@を使って関数を飾る
''' 3: @ , “myfunc = deco(myfunc)”
, '''
def deco(func):
print("before myfunc() called.")
func()
print(" after myfunc() called.")
return func
@deco
def myfunc():
print(" myfunc() called.")
myfunc()
myfunc()
四、埋め込み包装関数を使用して、新しい関数が呼び出されるたびに
''' 4: ,
, '''
def deco(func):
def _deco():
print("before myfunc() called.")
func()
print(" after myfunc() called.")
# func,
return _deco
@deco
def myfunc():
print(" myfunc() called.")
return 'ok'
myfunc()
myfunc()
五、パラメータ付き関数を装飾する
''' 5: ,
, '''
def deco(func):
def _deco(a, b):
print("before myfunc() called.")
ret = func(a, b)
print(" after myfunc() called. result: %s" % ret)
return ret
return _deco
@deco
def myfunc(a, b):
print(" myfunc(%s,%s) called." % (a, b))
return a + b
myfunc(1, 2)
myfunc(3, 4)
六、パラメータ数が不確定な関数を装飾する
''' 6: ,
(*args, **kwargs), '''
def deco(func):
def _deco(*args, **kwargs):
print("before %s called." % func.__name__)
ret = func(*args, **kwargs)
print(" after %s called. result: %s" % (func.__name__, ret))
return ret
return _deco
@deco
def myfunc(a, b):
print(" myfunc(%s,%s) called." % (a, b))
return a+b
@deco
def myfunc2(a, b, c):
print(" myfunc2(%s,%s,%s) called." % (a, b, c))
return a+b+c
myfunc(1, 2)
myfunc(3, 4)
myfunc2(1, 2, 3)
myfunc2(3, 4, 5)
七、装飾器にパラメータを持たせる
''' 7: 4 , ,
。
'''
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.")
@deco("module2")
def myfunc2():
print(" myfunc2() called.")
myfunc()
myfunc2()
八、装飾器に類パラメータを持たせる
''' 8: '''
class locker:
def __init__(self):
print("locker.__init__() should be not called.")
@staticmethod
def acquire():
print("locker.acquire() called.( )")
@staticmethod
def release():
print(" locker.release() called.( )")
def deco(cls):
'''cls acquire release '''
def _deco(func):
def __deco():
print("before %s called [%s]." % (func.__name__, cls))
cls.acquire()
try:
return func()
finally:
cls.release()
return __deco
return _deco
@deco(locker)
def myfunc():
print(" myfunc() called.")
myfunc()
myfunc()
九、アクセラレータはクラスパラメータを持ち、共通クラスを他のpyファイルに分割すると同時に、1つの関数に複数のアクセラレータを適用することを実証した.
'''mylocker.py: for 9.py'''
class mylocker:
def __init__(self):
print("mylocker.__init__() called.")
@staticmethod
def acquire():
print("mylocker.acquire() called.")
@staticmethod
def unlock():
print(" mylocker.unlock() called.")
class lockerex(mylocker):
@staticmethod
def acquire():
print("lockerex.acquire() called.")
@staticmethod
def unlock():
print(" lockerex.unlock() called.")
def lockhelper(cls):
'''cls acquire release '''
def _deco(func):
def __deco(*args, **kwargs):
print("before %s called." % func.__name__)
cls.acquire()
try:
return func(*args, **kwargs)
finally:
cls.unlock()
return __deco
return _deco
''' 9: , py
'''
from mylocker import *
class example:
@lockhelper(mylocker)
def myfunc(self):
print(" myfunc() called.")
@lockhelper(mylocker)
@lockhelper(lockerex)
def myfunc2(self, a, b):
print(" myfunc2() called.")
return a + b
if __name__=="__main__":
a = example()
a.myfunc()
print(a.myfunc())
print(a.myfunc2(1, 2))
print(a.myfunc2(3, 4))
参考資料
1.Pythonアクセサリー学習http://blog.csdn.net/thy38/article/details/4471421
2.Python装飾器とフェース向けプログラミングhttp://www.cnblogs.com/huxi/archive/2011/03/01/1967600.html