鱼C论坛

 找回密码
 立即注册
查看: 1708|回复: 5

[已解决]方法调用问题

[复制链接]
发表于 2020-6-26 16:32:43 | 显示全部楼层 |阅读模式

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

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

x
为什么在
class New_int(int):
    def __add__(self,other):
        return int.__sub__(self,other)
    def __sub__(self,other):
        return int.__add__(self,other)
__sub__(self,other)调用的方法不是这个类前面定义的 __add__(self,other)方法 而是int类的方法
在class Capstr(str):
    def __new__(cla,string):
        string=string.upper()
        return str.__new__(cla,string)
中返回的方法是Capstr()的__new__(cla,string)方法 不是Str自身的方法,是因为Str没有__new__(cla,string)方法吗
最佳答案
2020-6-26 16:38:50



__sub__(self,other)调用的方法不是这个类前面定义的 __add__(self,other)方法 而是int类的方法


因为你把 New_int 这个类的 __add__(self,other) 方法重写了,重写就把原来继承了 int 的 __add__(self,other) 方法给覆盖了 导致完全没有原本的 __add__(self,other) 功能, 所以要调用 父类 int 的__add__(self,other) 方法


中返回的方法是Capstr()的__new__(cla,string)方法 不是Str自身的方法,是因为Str没有__new__(cla,string)方法吗

class Capstr(str):
    def __new__(cla,string):
        string=string.upper()
        return str.__new__(cla,string)


就是调用 str 类的 __new__方法呀,不是调用Capstr 的方法,而且在类中肯定会有 __new__ 方法,因为这个方法要将实例化对象传给 __init__ ,在实例化有着重要的意义和作用

你之前都没继承也没重写__new__方法 是因为Python 默认继承了 object 类的 __new__方法



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

使用道具 举报

发表于 2020-6-26 16:38:50 | 显示全部楼层    本楼为最佳答案   



__sub__(self,other)调用的方法不是这个类前面定义的 __add__(self,other)方法 而是int类的方法


因为你把 New_int 这个类的 __add__(self,other) 方法重写了,重写就把原来继承了 int 的 __add__(self,other) 方法给覆盖了 导致完全没有原本的 __add__(self,other) 功能, 所以要调用 父类 int 的__add__(self,other) 方法


中返回的方法是Capstr()的__new__(cla,string)方法 不是Str自身的方法,是因为Str没有__new__(cla,string)方法吗

class Capstr(str):
    def __new__(cla,string):
        string=string.upper()
        return str.__new__(cla,string)


就是调用 str 类的 __new__方法呀,不是调用Capstr 的方法,而且在类中肯定会有 __new__ 方法,因为这个方法要将实例化对象传给 __init__ ,在实例化有着重要的意义和作用

你之前都没继承也没重写__new__方法 是因为Python 默认继承了 object 类的 __new__方法



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

使用道具 举报

 楼主| 发表于 2020-6-26 16:47:15 | 显示全部楼层
Twilight6 发表于 2020-6-26 16:38
因为你把 New_int 这个类的 __add__(self,other) 方法重写了,重写就把原来继承了 int 的 __add_ ...

后面的明白了
把 New_int 这个类的 __add__(self,other) 方法覆盖了 不应该调用被覆盖了的方法吗 这个方法被覆盖了 也可以使用啊 为什么没使用呢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-26 16:52:26 | 显示全部楼层
zhongduannimei 发表于 2020-6-26 16:47
后面的明白了
把 New_int 这个类的 __add__(self,other) 方法覆盖了 不应该调用被覆盖了的方法吗 这个 ...


你的意思是这个代码这样吗?
def __add__(self,other):
        return New_int.__sub__(self,other)
    def __sub__(self,other):
        return New_int.__add__(self,other)


这样会造成无限递归啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2020-6-26 16:53:53 | 显示全部楼层
Twilight6 发表于 2020-6-26 16:52
你的意思是这个代码这样吗?

明白了 谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-26 16:55:39 | 显示全部楼层

没事~ 客气了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-11 14:48

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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