Python面向对象父类和子类的知识

单继承:

#定义父类(class 后的第一个词的首字母大写)
class Master(object)
    def __init__(self):
        self.kongfu='[古法煎饼果子配方】'
    def make_cake(self)
        print(f'运用{self.kongfu}制作煎饼果子')

#定义子类
class Prentice(Master)
    pass

tudi=Prentice()
print(tudi.kongfu)

tudi.make_cake()

多继承:

class Master(object):
    self __init__(self):
         self.kongfu='古法煎饼果子配方'
    def make_cake(self):
        print(f'使用{self.kongfa}制作煎饼果子')


class School(object)
    self __init__(self):
         self.kongfu='河北煎饼果子配方'
    def make_cake(self):
        print(f'使用{self.kongfa}制作煎饼果子')

class Prentice(School,Master)
    pass

tudi=Prentice()
print(tudi.kongfu)
tudi.make_cake()

多继承时注意!

在class Prentice(School,Master)中,括号内谁里Prentice近执行后就会显示Prentice继承他的信息

子类重写父类的属性和方法:

class Master(object):
    self __init__(self):
         self.kongfu='古法煎饼果子配方'
    def make_cake(self):
        print(f'使用{self.kongfa}制作煎饼果子')


class School(object)
    self __init__(self):
         self.kongfu='河北煎饼果子配方'
    def make_cake(self):
        print(f'使用{self.kongfa}制作煎饼果子')
class Prentice(School,Master)
    self __init__(self):
         self.kongfu='独创煎饼果子方法'
    def make_cake(self):
        print(f'使用{self.kongfu}制作煎饼果子')

tudi=Prentice()
print(tudi.kongfu)
tudi.make_cake()

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值