鱼C论坛

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

[已解决]有关魔法方法算数运算的课后习题求解

[复制链接]
发表于 2020-7-6 18:21:31 | 显示全部楼层 |阅读模式

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

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

x
class Nstr(int):
    def __init__(self, arg=''):
        if isinstance(arg, str):
            self.total = 0
            for each in arg:
                self.total += ord(each)
        else:
            print("参数错误!")

    def __add__(self, other):   
        return self.total + other.total
想计算两个字符串的AscII码和的加法,以上做法为啥会报错呢?
最佳答案
2020-7-6 19:08:45
本帖最后由 Twilight6 于 2020-7-6 19:10 编辑
lingedu 发表于 2020-7-6 18:36
那为啥继承与str类就能成功啊,还有一个问题我重写了__add__(self,other)方法,那self.total + ot ...


[b]
你的原本代码也没问题,是不是你自己实例化时候的问题?

你代码没有重写 __new__ 所以 __new__ 会自动将示例对象返回给 __init__

但是还是要记住,继承不可变类型的时候记得应该重写 __new__ 而不是 __init__哈:

这是你原来的代码,运行正常:
class Nstr(int):
    def __init__(self, arg=''):
        if isinstance(arg, str):
            self.total = 0
            for each in arg:
                self.total += ord(each)
        else:
            print("参数错误!")

    def __add__(self, other):
        return self.total + other.total

a = Nstr('1')
b = Nstr('2')
print(a+b)

还有一个问题我重写了__add__(self,other)方法,那self.total + other.total时,加号不会调用__add__(self,other)方法,之后就一直无限递归吗?


__add__ 是对整个类而言的,不是对里面的实例属性而言的,你把 return 写成 self + other 就会无限递归,因为 self 和 other 就是类本身,所以 __add__ 会捕获 + 法运算导致无限递归



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

使用道具 举报

发表于 2020-7-6 18:33:55 | 显示全部楼层

int 是不可变类型的值  你应该用__new__ 魔法方法,而且要设置返回值

建议 else 那 raise 个错误,否则你还是会实例化成功
class Nstr(int):
    def __new__(self, arg=''):
        if isinstance(arg, str):
            self.total = 0
            for each in arg:
                self.total += ord(each)
            return self.total
        else:
            raise ValueError

    def __add__(self, other):
        return self.total + other.total

a = Nstr('1')
b = Nstr('2')
print(a+b)



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

使用道具 举报

 楼主| 发表于 2020-7-6 18:36:41 | 显示全部楼层
Twilight6 发表于 2020-7-6 18:33
int 是不可变类型的值  你应该用__new__ 魔法方法,而且要设置返回值

建议 else 那 raise 个错误,否 ...
class Nstr(str):
    def __init__(self, arg=''):
        if isinstance(arg, str):
            self.total = 0
            for each in arg:
                self.total += ord(each)
        else:
            print("参数错误!")

    def __add__(self, other):
        return self.total + other.total

那为啥继承与str类就能成功啊,还有一个问题我重写了__add__(self,other)方法,那self.total + other.total时,加号不会调用__add__(self,other)方法,之后就一直无限递归吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-6 19:08:45 | 显示全部楼层    本楼为最佳答案   
本帖最后由 Twilight6 于 2020-7-6 19:10 编辑
lingedu 发表于 2020-7-6 18:36
那为啥继承与str类就能成功啊,还有一个问题我重写了__add__(self,other)方法,那self.total + ot ...


[b]
你的原本代码也没问题,是不是你自己实例化时候的问题?

你代码没有重写 __new__ 所以 __new__ 会自动将示例对象返回给 __init__

但是还是要记住,继承不可变类型的时候记得应该重写 __new__ 而不是 __init__哈:

这是你原来的代码,运行正常:
class Nstr(int):
    def __init__(self, arg=''):
        if isinstance(arg, str):
            self.total = 0
            for each in arg:
                self.total += ord(each)
        else:
            print("参数错误!")

    def __add__(self, other):
        return self.total + other.total

a = Nstr('1')
b = Nstr('2')
print(a+b)

还有一个问题我重写了__add__(self,other)方法,那self.total + other.total时,加号不会调用__add__(self,other)方法,之后就一直无限递归吗?


__add__ 是对整个类而言的,不是对里面的实例属性而言的,你把 return 写成 self + other 就会无限递归,因为 self 和 other 就是类本身,所以 __add__ 会捕获 + 法运算导致无限递归



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

使用道具 举报

 楼主| 发表于 2020-7-6 19:16:39 | 显示全部楼层
Twilight6 发表于 2020-7-6 19:08
你的原本代码也没问题,是不是你自己实例化时候的问题?

你代码没有重写 __new__ 所以 __new__  ...

哦哦,我试的是Nstr(‘sa’)+Nstr('dsa')报错应该是继承int类智能输入纯数字字符串,确实这种不可变类型最好还是写__new__()好些。还有return self.total + other.total这两个实例属性对应的值是int类型的所以这个+是用int的__add__()方法对吗,毕竟Nstr的__add__()已经重写了,是这样吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-6 19:17:36 | 显示全部楼层
lingedu 发表于 2020-7-6 19:16
哦哦,我试的是Nstr(‘sa’)+Nstr('dsa')报错应该是继承int类智能输入纯数字字符串,确实这种不可变类 ...

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-20 03:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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