Wie kann ich alle Unterklassen einer Klasse in Python finden?

Patricia Arquette
Freigeben: 2024-11-15 06:05:02
Original
478 Leute haben es durchsucht

How Can I Find All Subclasses of a Class in Python?

Finding All Subclasses of a Class in Python

To retrieve all classes inherited from a specified base class in Python, utilize the __subclasses__() method. This method is available for new-style classes that extend the object class (the default in Python 3). Here's how it works:

class Foo(object): pass
class Bar(Foo): pass
class Baz(Foo): pass
class Bing(Bar): pass

print([cls.__name__ for cls in Foo.__subclasses__()])
# ['Bar', 'Baz']

print(Foo.__subclasses__())
# [<class '__main__.Bar'>, <class '__main__.Baz'>]
Nach dem Login kopieren

To include subsubclasses, recursion can be used:

def all_subclasses(cls):
    return set(cls.__subclasses__()).union(
        [s for c in cls.__subclasses__() for s in all_subclasses(c)])

print(all_subclasses(Foo))
# {<class '__main__.Bar'>, <class '__main__.Baz'>, <class '__main__.Bing'>}
Nach dem Login kopieren

Note: Subclasses that have not been defined yet (e.g., due to unimported modules) will not be detected by __subclasses__().

Locating Subclasses Using a Class Name String:

When only the class name is available as a string, the following steps are necessary:

  1. Find the class using the class name.
  2. Utilize __subclasses__() to retrieve the subclasses of the located class.

Finding a Class from a Name String:

The method for locating a class from a name string depends on its expected location:

  • If expected within the same module:

    cls = globals()[name]
    Nach dem Login kopieren
  • If expected within the locals namespace:

    cls = locals()[name]
    Nach dem Login kopieren
  • If anywhere in the modules:

    import importlib
    modname, _, clsname = name.rpartition('.')
    mod = importlib.import_module(modname)
    cls = getattr(mod, clsname)
    Nach dem Login kopieren

Once the class is found, its __subclasses__() method can be used to retrieve the desired list of subclasses.

Das obige ist der detaillierte Inhalt vonWie kann ich alle Unterklassen einer Klasse in Python finden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage