I see everywhere examples that super-class methods should be called by:
super(SuperClass, instance).method(args)
Is there any disadvantage to doing:
SuperClass.method(instance, args)
TIA, Ian
|
|
|
Consider the following situation:
So the classes form a so-called inheritance diamond:
Running the code yields
That's bad because The purpose of
and comment-out
the code yields the more desireable result:
Now all the Holy smokes, So be careful -- the two are not precisely alternatives. They can yield vastly different results. Using If you have full control over your class hierarchy, and you avoid inheritance diamonds, then there is no need for |
|||||||||||||
|
|
There's no penalty as-is, though your example is somewhat misguided. In the first example, it should be
and that leads me to quote the Python docs:
Basically, by using the first method you don't have to hard-code your parent class in there for single-class hierarchies, and you simply can't really do what you want (efficiently/effectively) using the second method when using multiple inheritance. |
|||
|
|