美文网首页
python继承二(实例)

python继承二(实例)

作者: 光光的杂货铺 | 来源:发表于2016-12-21 17:13 被阅读0次

    父类

    Paste_Image.png

    子类一

    Paste_Image.png

    采用父类名.方法的方式调用父类中的初始化函数"

    子类二

    Paste_Image.png

    " 使用super(子类名,self).方法的方式调用父类的初始化函数,使用super()的方式需要在父类中继承object这个类,否则会报" TypeError: super() argument 1 must be type, not classobj"错误"

    相关文章

      网友评论

          本文标题:python继承二(实例)

          本文链接:https://www.haomeiwen.com/subject/fsiqvttx.html