day_4.30 py
2018-4-30 13:02:32
''' 多态:只有当调用方法的时候才知道调用父类 还是子类的方法(随变化而变化,等到真正实行的时候才知道结果) 面向对象三个特点: 封装 继承 多态 ''' class Dog(object): def print_self(self): print("大家好,我是xxxx,希望以后多多关照") class Xiaotq(Dog): def print_self(self): print("hello everbody,我是你们的老大,我是xxx") def introduce(temp): temp.print_self() dog1 = Dog() dog2 = Xiaotq() introduce(dog1) introduce(dog2)
1.私有方法