鱼C论坛

 找回密码
 立即注册
查看: 2411|回复: 0

[技术交流] 类(class)的继承:子类继承父类的属性和方法

[复制链接]
发表于 2020-9-23 09:41:20 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
class Monster:
    def __init__(self, hp=200):
        self.hp = hp

    def run(self):
        print('移动到某个位置')


class Animal(Monster):  # 定义一个子类
    def __init__(self, hp=50):
        super().__init__(hp)  # 继承inherit父类的属性,常用


class Boss(Monster):
    """定义一个Boss子类"""
    def __init__(self, hp=1000):
        super().__init__(hp)

    def run(self):  # 与父类的方法重名,那么就只用当前子类的方法;类似于局部变量
        print("I'm the Boss, get away!")


m1 = Monster(150)
m1.run()
print(m1.hp)
a1 = Animal(50)
a1.run()  # 会调用父类的方法
b1 = Boss(800)
print(b1.hp)
b1.run()
print('m1的类别:%s' % type(m1))
print('a1的类别:%s' % type(a1))
# 下面判断子类关系
print(isinstance(b1, Monster))  # True
# 之前学习的数字、字符串、元组等都是类,而且都是object的子类
print(type(123))
print(isinstance(['1', '2'], object))  # True
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 15:50

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表