标签:自己的 方法 简介 animal 中继 nbsp style self rto
1.了解父类和子类的关系:
1 class Animal(object): 2 def run(self): 3 print("animal is running") 4 def run_twice(self): 5 self.run() 6 self.run()
1 class fish(Animal): 2 def run(self): 3 print("fish is not run, is fishing...")
1 class Tortoise(Animal): 2 def run(self): 3 print("Tortoise is running slowly...")
在上述三行代码中,Animal是父类,而fish和Tortoise则是Animal的子类。
子类具有父类的全部功能,这种特性称为:继承
此外,从上面的代码可以看出,三个类都有run()方法。当子类和父类拥有相同的方法时,子类的方法会覆盖父类的方法。这中特性称为:多态
从左侧的截图可以看出:子类fish继承了父类的run_twice()方法,同时fish自己的run()方法
覆盖了父类的方法,所以打印出来的是:"fish is not run..."而不是"animal is running..",这种称为多态。
标签:自己的 方法 简介 animal 中继 nbsp style self rto
原文地址:http://www.cnblogs.com/lmt921108/p/7563392.html