使用super获取python oop的错误

时间:2013-02-09 09:10:10

标签: python oop

我正在尝试这个

In [1]: class Parent:
   ...:     def __init__(self):
   ...:         self.a =10
   ...:         self.b =20
   ...:


In [3]: class NewParent(Parent):
    def __init__self():
        super(NewParent,self).__init__()
        self.c =30
   ...:

当我这样做时

In [4]: c = NewParent()

In [5]: c
Out[5]: <__main__.NewParent instance at 0x2c98878>

In [6]: c.a
Out[6]: 10

In [7]: c.b
Out[7]: 20

In [8]: c.c

AttributeError Traceback(最近一次调用最后一次)  in() ----&GT; 1 c.c

AttributeError:NewParent实例没有属性“c”

2 个答案:

答案 0 :(得分:1)

您在NewParent上进行了方法声明。

def __init__(self):

答案 1 :(得分:0)

class NewParent(Parent):
    def __init__self():
        super(NewParent,self).__init__()
        self.c =30

应该是

class NewParent(Parent):
    def __init__(self):
        #Your code here