Skip to content
Advertisement

How to initialize one parent at a time in multiple inheritance?

Suppose I have the following class inheriting from classes A and B:

JavaScript

How do I initialize B only after initializing A? Using super(C,self).__init__() doesn’t let me use attributes of A into B.

Advertisement

Answer

You don’t HAVE to use super.

JavaScript

Now, that does mean some pretty tight coupling, in that C has to be way too aware of what A.__init__ does.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement