码迷,mamicode.com
首页 > 编程语言 > 详细

python 类(2)

时间:2019-08-02 10:55:33      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:父类   name   判断   英国   实例   pre   print   sub   子类   

"""

"""
class BaseCat(object):
""" 猫科基础类"""

tag = ‘猫科动物‘
def __init__(self, name):
self.name = name

def eat(self):
print(‘吃东西‘)

class Tiger(BaseCat):
"""
老虎类
"""
def eat(self):
# 调用父类方法
super(Tiger,self).eat()
print(‘还喜欢吃肉‘)


class Panda(BaseCat):
"""
熊猫类
"""


class PetCat(BaseCat):
"""
家猫类
"""
def eat(self):
# 调用父类方法
super(PetCat,self).eat()
print(‘还喜欢吃猫粮‘)


class HuaCat(PetCat):
"""
中华田园猫
"""
def eat(self):
# 调用父类方法
super(HuaCat,self).eat()
print(‘还喜欢吃零食‘)

class DuanCat(PetCat):
"""
英国短毛
"""
# def eat(self):
# super(DuanCat, self).eat()
# print(‘我啥都吃‘)

if __name__ == ‘__main__‘:
# 实例化 中华田园猫
Cat = HuaCat(‘小黄‘)
Cat.eat()
print(‘--------------------‘)
# 实例化 英国短毛
Cat_d = DuanCat(‘小辉‘)
Cat_d.eat()

# 子类判断 True
print(issubclass(DuanCat, BaseCat))

python 类(2)

标签:父类   name   判断   英国   实例   pre   print   sub   子类   

原文地址:https://www.cnblogs.com/ericblog1992/p/11286936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!