在类中调用parent的__call__方法

时间:2011-10-18 11:36:17

标签: python inheritance methods superclass

我想从继承的类中调用父级的调用方法

代码看起来像这样

#!/usr/bin/env python

class Parent(object):

    def __call__(self, name):
        print "hello world, ", name


class Person(Parent):

    def __call__(self, someinfo):                                                                                                                                                            
        super(Parent, self).__call__(someinfo)

p = Person()
p("info")

我明白了,

File "./test.py", line 12, in __call__
super(Parent, self).__call__(someinfo)
AttributeError: 'super' object has no attribute '__call__'

我无法弄清楚为什么,有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:14)

super函数将派生的类作为其第一个参数,而不是基类。

super(Person, self).__call__(someinfo)

如果你需要使用基类,你可以直接使用它(但要注意这会破坏多重继承,所以你不应该这样做,除非你确定这是你想要的):

Parent.__call__(self, someinfo)