编程中的继承和多态其实跟生物学中的遗传非常类似。例如儿子与父亲相比较,有很多相同的地方,那么这就是遗传;但是父子间也有很多不一样的地方,那么这就是变异,也就是多态。
python中的Student
类继承了People
类中的所有方法和属性,那么就有了People
所有的属性和方法。当然Student
也可以在People
的基础上添加属性和方法,也可以修改继承自People
的属性和方法(覆写,Overide)。
例如:
class People(object):
name = "people"
age = ""
def walk(self):
print self.name + "Walk"
class Student(People):
name = "Student"
def walk(self):
super(Student, self).walk()
print "hshhs"
def run(self):
print "run"
student = Student()
student.walk()
输出:
StudentWalk
hshhs