python - 在 python 中查找实例的所有成员,不包括 __init__

标签 python oop python-2.7 introspection

vars 关键字为我提供了一个实例中的所有变量,例如:

In [245]: vars(a)
Out[245]: {'propa': 0, 'propb': 1}

但是,我不知道有一个解决方案可以列出我的类中定义的所有可调用成员(例如,参见此处:Finding what methods an object has),我添加了这个简单的改进,它排除了 __init__ :

In [244]: [method for method in dir(a) if callable(getattr(a, method)) and not method.startswith('__')]
Out[244]: ['say']

比较:

In [243]: inspect.getmembers(a)
Out[243]:
[('__class__', __main__.syncher),
 ('__delattr__',
  <method-wrapper '__delattr__' of syncher object at 0xd6d9dd0>),
 ('__dict__', {'propa': 0, 'propb': 1}),
 ('__doc__', None),
 ...snipped ...
 ('__format__', <function __format__>),
 ('__getattribute__',
  <method-wrapper '__getattribute__' of syncher object at 0xd6d9dd0>),
 ('__hash__', <method-wrapper '__hash__' of syncher object at 0xd6d9dd0>),
 ('__init__', <bound method syncher.__init__ of <__main__.syncher object at 0xd6d9dd0>>),
 ('__module__', '__main__'),
 ('__setattr__',
  <method-wrapper '__setattr__' of syncher object at 0xd6d9dd0>),
 ('__weakref__', None),
 ('propa', 0),
 ('propb', 1),
 ('say', <bound method syncher.say of <__main__.syncher object at 0xd6d9dd0>>)]

或者例如:

In [248]: [method for method in dir(a) if callable(getattr(a, method)) 
                and isinstance(getattr(a, method), types.MethodType)]
Out[248]: ['__init__', 'say']

我还找到了这个方法,它排除了内置例程:

In [258]: inspect.getmembers(a, predicate=inspect.ismethod)
Out[258]:
[('__init__',
  <bound method syncher.__init__ of <__main__.syncher object at 0xd6d9dd0>>),
 ('say', <bound method syncher.say of <__main__.syncher object at 0xd6d9dd0>>)]

所以,我的问题是: 您是否有更好的方法在 Python 2.7.X 中查找类中的所有方法(不包括 __init__ 和所有内置方法)?

最佳答案

由于没有其他人提供更好的解决方案,我想 Pythonic 的方法是使用 Python 的 STL:

inspect.getmembers(a, predicate=inspect.ismethod)

要排除 init 可以使用 filter

关于python - 在 python 中查找实例的所有成员,不包括 __init__,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17043520/

相关文章:

c++ - 在 C++ 中继承同一个类两次(故意)

Python:如何 "kill"类实例/对象?

python - 如何保存使用 Tkinter 按钮运行的 python 函数的输出?

python - 意外的 HTML 输出

python - 如何使用具有任意数量元素的占位符创建 python 字符串

python - Pandas DataFrame 对象继承还是对象使用?

web-services - 编码架构问题

python - 让 Spyder 为整个界面使用深色主题

python - 提供列表中非常具体的元素的计数并返回它的函数

python - 与属性类相比,使用属性装饰器是否有优势?