Python教程

2021-08-26 Python之多重继承

本文主要是介绍2021-08-26 Python之多重继承,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#多重继承

 1 class Person:
 2     def __init__(self,name):
 3         self.name=name
 4     def eat(self):
 5         print('------->eat1')
 6     def eat(self):
 7         print('---------->eat2')
 8 
 9 p=Person('hiug')
10 p.eat()

#一个子类可以继承多个父类
#多重继承

 1 class A:
 2     def test1(self):
 3         print('-------------------->AAAAAAA')
 4 class B:
 5     def test2(self):
 6         print('-------------------->BBBBBBB')
 7 class C(A,B):
 8     def test3(self):
 9         print('--------------------->CCCCCCC')
10 
11 c=C()
12 c.test1()
13 c.test2()
14 c.test3()

 

这篇关于2021-08-26 Python之多重继承的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!