473,386 Members | 1,647 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

trouble understanding super()

Here's some code from Python in a Nutshell. The comments are lines from
a previous example that the calls to super replace in the new example:

class A(object):
def met(self):
print 'A.met'

class B(A):
def met(self):
print 'B.met'
# A.met(self)
super(B, self).met()

class C(A):
def met(self):
print 'C.met'
# A.met(self)
super(C, self).met()

class D(B, C):
def met(self):
print 'D.met'
# B.met()
# C.met()
super(D, self).met()

Then you call D().met()

Now, I understand that the commented code would cause A.met to be called
twice. But why does the second version (with super) not also do this? I
guess my problem lies in not understanding exactly what the super
function returns.

super(D, self).met() seems like it would return something that has to do
with both B and C, which each in turn return a superobject having to do
with A, so why isn't A.met called twice still?

Thanks!
Jul 31 '06 #1
4 1544
John Salerno wrote:
Here's some code from Python in a Nutshell. The comments are lines from
a previous example that the calls to super replace in the new example:

class A(object):
def met(self):
print 'A.met'

class B(A):
def met(self):
print 'B.met'
# A.met(self)
super(B, self).met()

class C(A):
def met(self):
print 'C.met'
# A.met(self)
super(C, self).met()

class D(B, C):
def met(self):
print 'D.met'
# B.met()
# C.met()
super(D, self).met()

Then you call D().met()

Now, I understand that the commented code would cause A.met to be called
twice. But why does the second version (with super) not also do this? I
guess my problem lies in not understanding exactly what the super
function returns.

super(D, self).met() seems like it would return something that has to do
with both B and C, which each in turn return a superobject having to do
with A, so why isn't A.met called twice still?

Thanks!

Basically super(class_, self).method looks in self's mro (it's list of
base classes) for class class_, and then starts searching *after* class
class_ for the next class that implements the method.

In this case the object's (instance of D) mro will be (D, B, C, A,
object), so as super gets called in each class, it looks in that list
(tuple, whatever) for the class following it (actually the next class
following it that implements the method).

Since no class appears in that list more than once, each class's
implementation of the method will only be called once.
HTH,
~Simon
Also, if you haven't already, read:
http://www.python.org/download/relea...o/#cooperation

Jul 31 '06 #2
Simon Forman wrote:
In this case the object's (instance of D) mro will be (D, B, C, A,
object), so as super gets called in each class, it looks in that list
(tuple, whatever) for the class following it (actually the next class
following it that implements the method).

Since no class appears in that list more than once, each class's
implementation of the method will only be called once.
But after super(D, self).met() is called, doesn't that then call both
super(B, self).met() and super(C, self).met()? If so, how does that
avoid calling A.met twice? Or is that not what's happening?

Here's what I think gets called, in order, after running D().met():

print 'D.met'
super(D, self).met()
print 'B.met'
super(B, self).met()
print 'A.met'
print 'C.met'
super(C, self).met()
print 'A.met'
Jul 31 '06 #3
John Salerno wrote:
But after super(D, self).met() is called, doesn't that then call both
super(B, self).met() and super(C, self).met()? If so, how does that
avoid calling A.met twice? Or is that not what's happening?
If you have an instance of a B then super(B,self).met() will call A.met(),
but if self is actually an instance of a D, then super(B,self).met()
actually calls C.met().

That is why super needs both the class and the instance: so it can jump
sideways across the inheritance diamond instead of always passing calls to
the base of the current class.
Jul 31 '06 #4
Duncan Booth wrote:
John Salerno wrote:
>But after super(D, self).met() is called, doesn't that then call both
super(B, self).met() and super(C, self).met()? If so, how does that
avoid calling A.met twice? Or is that not what's happening?

If you have an instance of a B then super(B,self).met() will call A.met(),
but if self is actually an instance of a D, then super(B,self).met()
actually calls C.met().

That is why super needs both the class and the instance: so it can jump
sideways across the inheritance diamond instead of always passing calls to
the base of the current class.
Oh, I think I get it! So what's happening is this:

1. the MRO in this case is always (D, B, C, A, object)
2. super(D, self).met() looks in B
3. super(B, self).met() looks in C
4. super(C, self).met() looks in A

Right? So it's like making a ladder? I guess my confusion came when I
thought that a call to super(B, self).met() also called A.met, but I
guess it stops at C and lets C call it.
Jul 31 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Kerim Borchaev | last post by:
Hello! Always when I use "super" I create a code duplication because class used as first arg to "super" is always the class where the method containing "super" was defined in: ''' class C:...
2
by: Clarence Gardner | last post by:
The super object is considered a solution to the "diamond problem". However, it generally requires that the ultimate base class know that it is last in the method resolution order, and hence it...
0
by: Delaney, Timothy C (Timothy) | last post by:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/286195 This is a new version of super that automatically determines which method needs to be called based on the existing stack frames....
6
by: Steven Bethard | last post by:
When would you call super with only one argument? The only examples I can find of doing this are in the test suite for super. Playing around with it: py> class A(object): .... x = 'a'...
11
by: Brent | last post by:
I'd like to subclass the built-in str type. For example: -- class MyString(str): def __init__(self, txt, data): super(MyString,self).__init__(txt) self.data = data
9
by: Mike Krell | last post by:
I'm reading Alex Martelli's "Nutshell" second edition. In the section called "Cooperative superclass method calling", he presents a diamond inheritance hierachy: class A(object): def...
9
by: Pyenos | last post by:
Approach 1: class Class1: class Class2: def __init__(self):self.variable="variable" class Class3: def method():print Class1().Class2().variable #problem Approach 1.1:
8
ashitpro
by: ashitpro | last post by:
Understanding Ext-2 file system:chapter 1 The first block in each Ext2 partition is never managed by the Ext2 filesystem, because it is reserved for the partition boot sector. The rest of the...
5
matheussousuke
by: matheussousuke | last post by:
Hello, I'm using tiny MCE plugin on my oscommerce and it is inserting my website URL when I use insert image function in the emails. The goal is: Make it send the email with the URL...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.