CarterZhang 发表于 2020-11-25 22:12:02

__new__构造函数使用实例

在做课堂练习,题目如下:
定义一个类继承于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

求大佬解答!

jackz007 发表于 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>
      我这里没有任何问题啊

逃兵 发表于 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”对象不可迭代

CarterZhang 发表于 2020-11-26 11:09:01

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

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

哦哦!所以是这个意思:
如果输入123,或1.23,整型或浮点型,就会直接输出为ASCII码,
只有当是‘ABC’的话,就需要通过ord()函数变成ASCII码了!
谢谢答主!
页: [1]
查看完整版本: __new__构造函数使用实例