寄安 发表于 2021-8-10 16:23:57

魔方方法 构造与解析 课后习题动动手最后一道

各位大佬:
class Nint(int):
      def __new__(cls, arg=0):
                if isinstance(arg, str):
                        total = 0
                        for each in arg:
                              total += ord(each)
                        arg = total
                return int.__new__(cls, arg)

这个循环往后的看不懂(if以后的),希望大家帮忙解释一下,谢谢

arg为啥是str的实例对象了??
arg是浮点数初始化为0了吗?为啥还能对它进行遍历


冬雪雪冬 发表于 2021-8-10 16:37:51

class Nint(int): #定义一个新的类,是int的子类
      def __new__(cls, arg=0): #定义new方法,arg = 0 意味着,当 n = Nint()时,即参数为空,缺省值为0
                if isinstance(arg, str):#如果参数是字符串
                        total = 0
                        for each in arg: #对字符串遍历,如果是0就不会进入if为真的语句体中
                              total += ord(each) #吧字符的ascii码相加
                        arg = total #吧相加的值赋值给arg
                return int.__new__(cls, arg) #无论参数为数字还是字符串都调用int的new方法
页: [1]
查看完整版本: 魔方方法 构造与解析 课后习题动动手最后一道