查看“Python多重继承”的源代码
←
Python多重继承
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
==调用未绑定的父类方法== 有个也叫 用类名调用父类 <pre> class FooParent(object): def __init__(self): self.parent = 'I\'m the parent. ' print 'Parent' def bar(self,message): print message, 'from Parent' class FooChild(FooParent): def __init__(self): FooParent.__init__(self) print 'Child' def bar(self,message): FooParent.bar(self,message) print 'Child bar function.' print self.parent if __name__ =='__main__': foochild = FooChild() foochild.bar('HelloWorld') ''' Parent Child HelloWorld from Parent Child bar function. I'm the parent. ''' </pre> ==使用supper function== 这个方法更加好 <pre> class FooParent(object): def __init__(self): self.parent = 'I\'m the parent. ' print 'Parent' def bar(self,message): print message, 'from Parent' class FooChild(FooParent): def __init__(self): FooParent.__init__(self) print 'Child' def bar(self,message): #FooParent.bar(self,message) super(FooChild, self).bar(message) print 'Child bar function.' print self.parent if __name__ =='__main__': foochild = FooChild() foochild.bar('HelloWorld') ''' Parent Child HelloWorld from Parent Child bar function. I'm the parent. ''' </pre> ==知识点== 从运行结果上看,普通继承和super继承是一样的。但是其实它们的内部运行机制不一样,这一点在多重继承时体现得很明显。在super机制里可以保证公共父类仅被执行一次,至于执行的顺序,是按照mro进行的(E.__mro__)。 注意super继承只能用于新式类,用于经典类时就会报错。 新式类:必须有继承的类,如果没什么想继承的,那就继承object 经典类:没有父类,如果此时调用super就会出现错误:『super() argument 1 must be type, not classobj』 注意在Python3.0里语法有所改变:你可以用super().__init__()替换super(ChildB, self).__init__() 我早上就遇到这个坑 哈哈 == 参考== [https://taizilongxu.gitbooks.io/stackoverflow-about-python/content/19/README.html 理解Python中super()和__init__()方法] [http://blog.csdn.net/johnsonguo/article/details/585193 关于Python的super用法研究] [http://blog.csdn.net/lqhbupt/article/details/19631991 Python学习笔记(4)Python中super的用法] [[category:python]]
返回至
Python多重继承
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息