vote up 8 vote down star
6

Consider this - a base class A, class B inheriting from A, class C inheriting from B. What is a generic way to call a parent class constructor in a constructor? If this still sounds too vague, here's some code.

class A(object):
    def __init__(self):
        print "Constructor A was called"

class B(A):
    def __init__(self):
        super(B,self).__init__()
        print "Constructor B was called"

class C(B):
    def __init__(self):
        super(C,self).__init__()
        print "Constructor C was called"

c = C()

This is how I do it now. But it still seems a bit too non-generic - you still must pass a correct type by hand.

Now, I've tried using self.__class__ as a first argument to super(), but, obviously it doesn't work - if you put it in the constructor for C - fair enough, B's constructor gets called. If you do the same in B, "self" still points to an instance of C so you end up calling B's constructor again (this ends in an infinite recursion).

There is no need to think about diamond inheritance for now, I am just interested in solving this specific problem.

flag

"But it still seems a bit too non-generic - you still must pass a correct type by hand."?? You're passing the class name to super(). You never need to know the superclass or anything else. How is this non-generic? What problem does it create? Can you give an example where this breaks? – S.Lott May 24 at 17:08
I am not ready to answer this question if full. But anyway, what if the class gets renamed? What if I want to write a decorator function to automate this kind of chaining? Now I see, that this is not possible, but at the time of asking the question I did not know that. – shylent May 24 at 17:27

4 Answers

vote up 10 vote down check

The way you are doing it is indeed the recommended one (for Python 2.x).

The issue of whether the class is passed explicitly to super is a matter of style rather than functionality. Passing the class to super fits in with Python's philosophy of "explicit is better than implicit".

link|flag
I've had a really hard time deciding which answer to accept, but I will accept this one, simply because it is relevant to the version of python I am using. – shylent May 24 at 19:51
vote up 0 vote down

This version for python 2.x does not hard-code the class name:

super(self.__class__,self).__init__(....
link|flag
Nope, won't work. It will result in infinite recursion most of the time (as explained in the question), as .__class__ contains the type of the instance. – shylent Sep 1 at 6:08
vote up 8 vote down

Python 3 includes an improved super() which allows use like this:

super().__init__(args)
link|flag
Nice! Clearly, this is something I've been looking for. Sadly, I am still stuck at python 2 (and for a long time, too, methinks). – shylent May 24 at 16:19
vote up -1 vote down

Just google python super constructor and you'll find the answer

link|flag
Shhh or google will get the points ;) – Aiden Bell May 24 at 16:00
Yeah, thanks for the obligatory "just google it" answer, but anyway, my question goes a bit beyond what the page you googled suggests: if you've checked the examples there and the example I provided here, you might have noticed that they are, essentially, identical in the sense, that both times the superclass is explicitly mentioned in the super() call (which, if you've read my question, you might have noticed, I am desperately trying to avoid). – shylent May 24 at 16:05
2  
The solution you point to is even worse: you are proposing to hardcode the parent class name while the poster didn't even like the idea of hardcoding the current class name. – Samuel Tardieu May 24 at 16:06
Yes, and understanding how to avoid that at all costs is the very purpose of my question. I am glad someone understands. – shylent May 24 at 16:10
2  
Or just google python super constructor and you'll find this answer: stackoverflow.com/questions/904036/… – Nathan Fellman Sep 22 at 19:11
show 1 more comment

Your Answer

Get an OpenID
or

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