为了账号安全,请及时绑定邮箱和手机立即绑定

【2023年】第52天 继承和多态

标签:
Python

一、什么是继承?

  • 通过继承基类来得到基类的功能。
  • 所以我们把被继承的类称为父类或者基类,继承者被称作子类。
  • 子类拥有父类的所有属性和方法。
  • 父类不具备子类自由的属性和方法。
# coding:utf-8

class Parent(object):
    def talk(self):
        print('talk')

    def think(self):
        print('think')


class Child(Parent):
    def swiming(self):
        print('child can swimming')


c = Child()
c.talk()
c.swiming()

p = Parent()
p.talk()
# p.swiming()  # 报错
  • 定义子类时,将父类传入子类参数内。
  • 子类实例化可以调用自己父类的函数与变量。
  • 父类无法调用子类的函数与变量。
# coding:utf-8
# 继承的例子
class Parent(object):
    def __init__(self, name, sex):
        self.name = name
        self.sex = sex

    def talk(self):
        return f'{self.name} are walking'

    def is_sex(self):
        if self.sex == 'boy':
            return f'{self.name} is a boy'
        else:
            return f'{self.name} is a girl'


class ChildOne(Parent):
    def play_football(self):
        return f'{self.name} are playing football'


class ChildTwo(Parent):
    def play_pingpong(self):
        return f'{self.name} are playing pingpong'


c_one = ChildOne(name='xm', sex='boy')
result = c_one.play_football()
print(result)
result = c_one.talk()
print(result)
result = c_one.is_sex()
print(result)
print('--------------------------------')

c_two = ChildTwo(name='ym', sex='girl')
result = c_two.play_pingpong()
print(result)
result = c_two.talk()
print(result)
result = c_two.is_sex()
print(result)
print('---------------------------------')

p = Parent(name='xym', sex='boy')
result = p.talk()
print(result)
result = p.is_sex()
print(result)
# result = p.play_football()  # 报错
# print(result)

二、什么是多态?

  • 同一个功能的多状态化。

多态的用法:子类中重写父类的方法。

# coding:utf-8

# 1.定义一个父类
class XFather(object):
    def talk(self):
        print('X的爸爸说了一句话')

    def jump(self):
        print('大家都可以跳')


# 2.定义一个子类,并且继承一个父类
class XBrother(XFather):
    def run(self):
        print('XBrother在奔跑着..')

    def talk(self):  # 重写父类中的函数的意思是:函数名不发生变化,但是内容发生了变化
        print('XBrother在说话..')


class X(XFather):
    def talk(self):
        print('hhh, X也可以开心的说自己的观点')


if __name__ == "__main__":
    X_Brother = XBrother()
    X_Brother.run()
    X_Brother.talk()
    X_Brother.jump()

    father = XFather()
    father.talk()

    X1 = X()
    X1.talk()
    X1.jump()

为什么要去多态?为什么要去继承父类

  • 为了使用已经写好的类中的函数;
  • 为了保留子类中某个和父类一样的函数功能,这时候我们就用到了多态;
  • 可以帮助我们保留子类中的函数功能。
点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消