鱼C论坛

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

[已解决]__new__构造函数使用实例

[复制链接]
发表于 2020-11-25 22:12:02 | 显示全部楼层 |阅读模式

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

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

x
在做课堂练习,题目如下:
定义一个类继承于int类型,并实现一个特殊功能:
当传入的参数是字符串时,返回该字符串中所有字符的ASCII码的和。
代码如下:
class AscII(int):
    def __new__(cls,str1=0):
        if isinstance(str1,str):
            total = 0
            for each in str1:
                total += ord(each)
            str1 = total
        return int.__new__(cls,str1)

当我不加“if isinstance(str1,str):”时,有以下报错:
Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    print(AscII(123))
  File "F:/Programming/Python/practice/41.2.py", line 4, in __new__
    for each in str1:
TypeError: 'int' object is not iterable

求大佬解答!
最佳答案
2020-11-26 08:34:09
if isinstance(str1,str):
这一行代码是用来看你传入的参数是不是字符串str类型的,如果是的话才运行
            total = 0
            for each in str1:
                total += ord(each)
            str1 = total
你把这一行去掉以后,一旦输入的是整型int类型,就会触发
TypeError: 'int' object is not iterable
错误TypeError:“ int”对象不可迭代
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-25 22:37:35 | 显示全部楼层
class AscII(int):
    def __new__(cls,str1=0):
        if isinstance(str1 , str):
            total = 0
            for each in str1:
                total += ord(each)
            str1 = total
        return int.__new__(cls , str1)
print(AscII(123))
        运行实况
D:\00.Excise\Python>python x.py
123

D:\00.Excise\Python>
        我这里没有任何问题啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-26 08:34:09 | 显示全部楼层    本楼为最佳答案   
if isinstance(str1,str):
这一行代码是用来看你传入的参数是不是字符串str类型的,如果是的话才运行
            total = 0
            for each in str1:
                total += ord(each)
            str1 = total
你把这一行去掉以后,一旦输入的是整型int类型,就会触发
TypeError: 'int' object is not iterable
错误TypeError:“ int”对象不可迭代
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-26 11:09:01 | 显示全部楼层
逃兵 发表于 2020-11-26 08:34
这一行代码是用来看你传入的参数是不是字符串str类型的,如果是的话才运行

你把这一行去掉以后,一旦 ...

哦哦!所以是这个意思:
如果输入123,或1.23,整型或浮点型,就会直接输出为ASCII码,
只有当是‘ABC’的话,就需要通过ord()函数变成ASCII码了!
谢谢答主!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 06:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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