5

我想要一个包装类,它的行为与它包装的对象完全相同,只是它添加或覆盖了一些选择方法。

我的代码目前如下所示:

# Create a wrapper class that equips instances with specified functions
def equipWith(**methods):

  class Wrapper(object):
    def __init__(self, instance):
      object.__setattr__(self, 'instance',instance)

    def __setattr__(self, name, value):
      object.__setattr__(object.__getattribute__(self,'instance'), name, value)

    def __getattribute__(self, name):
      instance = object.__getattribute__(self, 'instance')

      # If this is a wrapped method, return a bound method
      if name in methods: return (lambda *args, **kargs: methods[name](self,*args,**kargs))

      # Otherwise, just return attribute of instance
      return instance.__getattribute__(name)

  return Wrapper

为了测试这一点,我写道:

class A(object):
  def __init__(self,a):
    self.a = a

a = A(10)
W = equipWith(__add__ = (lambda self, other: self.a + other.a))
b = W(a)
b.a = 12
print(a.a)
print(b.__add__(b))
print(b + b)

在最后一行时,我的口译员抱怨说:

Traceback (most recent call last):
  File "metax.py", line 39, in <module>
    print(b + b)
TypeError: unsupported operand type(s) for +: 'Wrapper' and 'Wrapper'

为什么是这样?如何让我的包装类按照我想要的方式运行?

4

1 回答 1

7

看来你想要的只能用非同凡响的新型物件来完成。请参阅https://stackoverflow.com/a/9059858/380231此博客文章文档

基本上,“特殊”功能缩短了对新型对象的查找过程。

于 2013-02-08T05:45:28.593 回答