列出python类中的@property修饰方法
Posted
技术标签:
【中文标题】列出python类中的@property修饰方法【英文标题】:list @property decorated methods in a python class 【发布时间】:2015-02-14 17:23:49 【问题描述】:是否可以获得一个类中所有@property
修饰方法的列表?如果有怎么办?
例子:
class MyClass(object):
@property
def foo(self):
pass
@property
def bar(self):
pass
我如何从这个类中获得['foo', 'bar']
?
【问题讨论】:
【参考方案1】:任何用property
装饰的东西都会在你的类命名空间中留下一个专用的对象。查看类的__dict__
,或者使用vars()
函数获取相同,任何为property
类型实例的值都是匹配的:
[name for name, value in vars(MyClass).items() if isinstance(value, property)]
演示:
>>> class MyClass(object):
... @property
... def foo(self):
... pass
... @property
... def bar(self):
... pass
...
>>> vars(MyClass)
dict_proxy('__module__': '__main__', 'bar': <property object at 0x1006620a8>, '__dict__': <attribute '__dict__' of 'MyClass' objects>, 'foo': <property object at 0x100662050>, '__weakref__': <attribute '__weakref__' of 'MyClass' objects>, '__doc__': None)
>>> [name for name, value in vars(MyClass).items() if isinstance(value, property)]
['bar', 'foo']
请注意,这将包括直接使用 property()
的任何内容(装饰器实际上就是这样做的),并且名称的顺序是任意的(因为字典没有设置顺序)。
【讨论】:
以上是关于列出python类中的@property修饰方法的主要内容,如果未能解决你的问题,请参考以下文章
python类中的@property和@staticmethod分别有什么用,还有其他的吗?