鱼C论坛

 找回密码
 立即注册
查看: 2198|回复: 4

[技术交流] super()函数到底有什么功能

[复制链接]
发表于 2021-9-5 13:54:08 | 显示全部楼层 |阅读模式

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

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

x
class CountList(list):
    def __init__(self, *args):
        super().__init__(args)
        self.count = []
        for i in args:
            self.count.append(0)

    def __len__(self):
        return len(self.count)

    def __getitem__(self, key):
        self.count[key] += 1
        return super().__getitem__(key)

    def __setitem__(self, key, value):
        self.count[key] += 1
        super().__setitem__(key, value)

    def __delitem__(self, key):
        del self.count[key]
        super().__delitem__(key)

    def counter(self, key):
        return self.count[key]

    def append(self, value):
        self.count.append(0)
        super().append(value)

    def pop(self, key=-1):
        del self.count[key]
        return super().pop(key)

    def remove(self, value):
        key = super().index(value)
        del self.count[key]
        super().remove(value)

    def insert(self, key, value):
        self.count.insert(key, 0)
        super().insert(key, value)

    def clear(self):
        self.count.clear()
        super().clear()

    def reverse(self):
        self.count.reverse()
        super().reverse()
###小甲鱼的除了len()和init()其他的魔法方法都
使用了super函数调用基类的同名方法,这是为什么啊

class CountList:
    def __init__(self,*args):
        self.List = [x for x in args]
        self.count = {}.fromkeys( [x for x in args], 0)

    def __len__(self):
        return len(self.List)

    def __getitem__(self,index):
        key = self.List[index]
        self.count[key] += 1
        return self.List[index]      

    def __setitem__(self,index,value):
        key = self.List[index]
        self.List[index] = value
        self.count.pop(key)
        self.count[value] = 0

    def append(self,value):
        self.List.append(value)
        self.count[value] = 0

    def pop(self):
        key = self.List[len(self.List)-1]
        self.count.pop(key)
        self.List.pop()

    def remove(self,value):
        if value not in self.List:
            print('列表不存在该元素!')
        else:
            self.List.remove(value)
            self.count.pop(value)   

    def insert(self,index,value):
        self.List.insert(index,value)
        self.count[value] = 0  

    def clear(self):
        self.count.clear()
        return self.List.clear()  

    def reverse(self):
        self.List.reverse()     # list.reverse() 这一步操作的返回值是一个None
        return self.List        # 需要通过打印被作用的列表才可以查看出具体的效果

    def counter(self,index):
        key = self.List[index]
        return self.count[key]
###我自己的代码没有用super函数但是也能运行,暂时还没有发现bug
那使用super函数到底有什么用呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-9-9 13:52:55 | 显示全部楼层

回帖奖励 +10 鱼币

最好还是去百度
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-9-9 14:20:44 | 显示全部楼层

回帖奖励 +10 鱼币

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

使用道具 举报

发表于 2021-10-1 18:53:43 | 显示全部楼层

回帖奖励 +10 鱼币

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

使用道具 举报

发表于 2021-10-1 20:47:37 | 显示全部楼层
想添加功能,但是又不想把基类的同名方法覆盖掉,那么闭着眼睛super()就行了。不super()相当于你这个方法完全重写了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-13 08:07

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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