在我的一门课程中,我有许多属性在获取和设置方面做非常相似的事情。所以我将参数抽象property
为一个工厂函数:
def property_args(name):
def getter(self):
# do something
return getattr(self, '_' + name)
def setter(self, value)
# do something
setattr(self, '_' + name, value)
return getter, setter
class MyClass(object):
def __init__(self):
self._x = None
x = property(*property_args('x')) # obviously there's more than one of these IRL
但是,我后来发现它property
实际上是一个类,并且对它进行子类化将是完美的。我在文档中找不到任何解释我需要覆盖的内容(以及__init__
等的参数签名),我真的不想在 C 源代码中寻找它。有谁知道我在哪里可以找到这些信息?