鱼C论坛

 找回密码
 立即注册
查看: 1609|回复: 1

[技术交流] python 038 类的继承

[复制链接]
发表于 2018-7-1 15:37:42 | 显示全部楼层 |阅读模式

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

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

x
1. 继承机制可以减少代码量, 其中如果一个类A继承来自另一个类B, 则称A为B的子类, B为A的父类, 继承可以使子类具有父类的各种方法和属性, 在继承时, 可以重新定义某种属性或重写某种方法来覆盖父类原有的属性或方法, 使其获得和父类不同的功能, 例如:
>>> class  Parent:
        def  hello(self):
                print("正在调用父类...")
                
>>> class  Child(Parent):
        pass

>>> p = Parent()
>>> p.hello()
正在调用父类...
>>> c = Child()
>>> c.hello()
正在调用父类...
>>> class  Child(Parent):
        def  hello(self):
                print("正在调用子类的方法...")

2. 对于 __init__  , 返回为None, 不能返回除了None以外的对象

3. 对于子类继承父类并覆盖相应的属性或方法, 例如:
import  random as r

class  Fish:
    def  __init__(self):
        self.x = r.randint(0, 10)
        self.y = r.randint(0, 10)

    def  move(self):
        self.x -= 1
        print("我的位置是: ", self.x, self.y)

class  Goldfish(Fish):
    pass

class  Carp(Fish):
    pass

class  Salmon(Fish):
    pass

class  Shark(Fish):
    def  __init__(self):
        super().__init__()
        self.hungry = True

    def  eat(self):
        if  self.hungry:
            print("吃吃吃")
            self.hungry = False
        else:
            print("吃饱了")

4. super(): 在想要继承原有的__init__方法并进行修改时, 在子类的 __init__ 内使用 super().__init__() 即可保留原有的内容

5. 多重继承(钻石继承, 菱形继承): 可以同时继承多个类, 但有缺点, 尽量不要使用

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2018-7-1 17:03:03 | 显示全部楼层
还没看到
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 18:29

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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