本文介绍了Python:列出给定类的层次结构中的所有基类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给定一个类 Foo
(是否为类),如何生成所有基类 - 继承层次结构中的任何地方 - of?
Given a class Foo
(whether it is a new-style class or not), how do you generate all the base classes - anywhere in the inheritance hierarchy - it issubclass
of?
推荐答案
inspect.getmro(cls)
和旧样式类并返回与 NewClass.mro()
相同的类和所有其基类的列表。
inspect.getmro(cls)
works for both new and old style classes and returns the same as NewClass.mro()
: a list of the class and all its base classes.
>>> class A(object):
>>> pass
>>>
>>> class B(A):
>>> pass
>>>
>>> import inspect
>>> inspect.getmro(B)
(<class '__main__.B'>, <class '__main__.A'>, <type 'object'>)
这篇关于Python:列出给定类的层次结构中的所有基类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!