vote up 5 vote down star

Trying to understand super(). From the looks of it, both child classes can be created just fine. Im curious as to what difference there actually is in this code:

class base(object):
    def __init__(self):
    	print "base created"

class child_a(base):
    def __init__(self):
    	base.__init__(self)

class child_b(base):
    def __init__(self):
    	super(child_b, self).__init__()

print child_a(),child_b()
flag

1  
Where possible, please use UpperCase Names for Classes. It's easier for other Python folks to read. – S.Lott Feb 23 at 0:39
This post might be helpful to you as well: stackoverflow.com/questions/222877/… – Adam Bernier Feb 23 at 0:45
Ouch, reading that article made me want to stay far, far away from super(). – mizipzor Feb 23 at 0:54

2 Answers

vote up 7 vote down check

Super lets you avoid referring to the base class explicitly, which can be nice. But the main advantage comes with multiple inheritance, where all sorts of fun stuff can happen. See the standard docs on super if you haven't already.

Edit: Note that the syntax changed in Python 3.0: you can just say super().__init__() instead of super(child_b, self).__init__() which IMO is quite a bit nicer.

link|flag
I agree. It means that not only do you not have to mention the parent class's name, but you don't have to mention the current class's name. – Devin Jeanpierre Feb 23 at 1:06
vote up 3 vote down

There isn't, really. super() looks at the next class in the MRO (method resolution order, accessed with cls.__mro__) to call the methods. Just calling the base __init__ calls the base __init__. As it happens, the MRO has exactly one item-- the base. So you're really doing the exact same thing, but in a nicer way with super() (particularly if you get into multiple inheritance later).

link|flag
I see. Could you elaborate a little as to why its nicer to use super() with multiple inheritance? To me, the base.__init__(self) is shorter (cleaner). If I had two baseclasses, it would be two of those lines, or two super() lines. Or did I misunderstand what you meant by "nicer"? – mizipzor Feb 23 at 0:40
Actually, it would be one super() line. When you have multiple inheritance, the MRO is still flat. So the first super().__init__ call calls the next class's init, which then calls the next, and so on. You should really check out some docs on it. – Devin Jeanpierre Feb 23 at 0:45
The child class MRO contains object too - a class's MRO is visible in the mro class variable. – Alabaster Codify Feb 23 at 1:24
Also note that classic classes (pre 2.2) don't support super - you have to explicitly refer to base classes. – Alabaster Codify Feb 23 at 1:26
"The child class MRO contains object too - a class's MRO is visible in the mro class variable." That is a big oops. Whoops. – Devin Jeanpierre Feb 23 at 4:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.