How to call a parent class's method from child class in python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:10:43Zhttp://stackoverflow.com/feeds/question/805066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python3How to call a parent class's method from child class in python?jjohn2009-04-30T01:52:31Z2009-04-30T03:52:59Z
<p>Stackers, </p>
<p>I apologize for this question in advance. It must be a FAQ, but I don't seem to be able to find the answer.</p>
<p>When creating a simple object hierarchy in python, I'd like to be able to invoke methods of the parent class from a derived class. In Perl and Java, there is a keyword for this (super). In Perl, I might do this:</p>
<pre><code>package Foo;
sub frotz() {
return "Bamf";
}
package Bar;
@ISA = qw(Foo);
sub frotz() {
my $str = SUPER::frotz();
return uc($str);
}
</code></pre>
<p>In python, it appears that I have to name the parent class explicitly from the child.
In the example above, I'd have to do something like Foo::frotz(). </p>
<p>This doesn't seem right, since this behavior makes it hard to make deep hierarchies. If children need to know what class defined an inherited method, then all sorts of information pain is created. </p>
<p>Is this an actual limitation in python, a gap in my understanding or both?</p>
<p>Thanks,</p>
<p>--Joe</p>
http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805081#80508112Answer by Adam Rosenfield for How to call a parent class's method from child class in python?Adam Rosenfield2009-04-30T01:58:28Z2009-04-30T01:58:28Z<p>Yes, but only with <a href="http://docs.python.org/glossary.html#term-new-style-class" rel="nofollow">new-style classes</a>. Use the <a href="http://docs.python.org/library/functions.html#super" rel="nofollow"><code>super()</code></a> function:</p>
<pre><code>class Foo(Bar):
def baz(self, arg):
return super(Foo, self).baz(arg)
</code></pre>
http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805082#8050822Answer by Jay for How to call a parent class's method from child class in python?Jay2009-04-30T01:58:31Z2009-04-30T02:06:42Z<p>Python also has <a href="http://docs.python.org/library/functions.html" rel="nofollow">super</a> as well: </p>
<p><code><strong>super</strong>(type[, object-or-type])</code></p>
<blockquote>
<p>Return a proxy object that delegates method calls to a parent or sibling class of type.
This is useful for accessing inherited methods that have been overridden in a class.
The search order is same as that used by getattr() except that the type itself is skipped.</p>
</blockquote>
<p>Example: </p>
<pre><code>class A(object):
def foo(self):
print "foo"
class B(A):
def foo(self):
super(B, self).foo()
myB = B()
myB.foo()
</code></pre>
http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805085#8050850Answer by lawrence for How to call a parent class's method from child class in python?lawrence2009-04-30T01:58:46Z2009-04-30T03:52:59Z<p>There's a super() in Python too. It's a bit wonky, because of Python's old- and new-style classes, but is quite commonly used e.g. in constructors:</p>
<pre><code>class Foo(Bar):
def __init__(self):
super(Foo, self).__init__()
self.baz = 5
</code></pre>
http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805091#8050911Answer by Alex Martelli for How to call a parent class's method from child class in python?Alex Martelli2009-04-30T02:02:38Z2009-04-30T02:02:38Z<p>ImmediateParentClass.frotz(self) will be just fine, whether the immediate parent class defined frotz itself or inherited it. super is only needed for proper support of <em>multiple</em> inheritance (and then it only works if every class uses it properly). In general, AnyClass.whatever is going to look up 'whatever' in AnyClass's ancestors if AnyClass doesn't define/override it, and this holds true for "child class calling parent's method" as for any other occurrence!</p>