摘要: 一、多态与多态性 1、什么是多态 多态指的是同一种类/事物的不同形态 class Animal: def speak(self): pass class People(Animal): def speak(self): print('say hello') class Dog(Animal): de 阅读全文
posted @ 2018-09-05 16:56 holy_pie 阅读(181) 评论(0) 推荐(0) 编辑