python委托(包装器)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python委托(包装器)相关的知识,希望对你有一定的参考价值。
# learning python 3rd edition # page 528 class Delegate(object): def __init__(self, wrapper): self.wrapper = wrapper def __getattr__(self, attribute): print "working on" return getattr(self.wrapper, attribute) a_list = Delegate([1,2]) a_list.append(4) working on
以上是关于python委托(包装器)的主要内容,如果未能解决你的问题,请参考以下文章
PromiseKit:委托系统包装器似乎在链的开头未使用时立即返回