失败且常态 发表于 2022-12-30 23:21:38

构造函数问题

class Nstr(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)

int.__new__是什么意思int是哪里来的
这里为什么要int.__new__(cls, arg)

lxping 发表于 2022-12-30 23:50:33

首先你在定义Nstr类的时候,class Nstr(int): 表示 int 类为 Nstr 的父类
int.__new__,这里的 int 就是父类 int, 利用int基类调用__new__方法。
return int.__new__(cls, arg)中arg元素已经替换成total值了,通过 int.__new__(cls, arg)可以得到arg的返回值,并且使得返回值是类的实例化对象
你如果直接使用return total,虽然可以得到同样的值,但是返回的是一个int类型的数据,并不是Nstr类型的数据。
class Nstr(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)

class Ns(int):
    def __new__(cls, arg=0):
      if isinstance(arg, str):
            total = 0
            for each in arg:
                total += ord(each)
            arg = total
      return total
a = Ns("fishc")
a
525
type(a)
<class 'int'>
s = Nstr("fishc")
type(s)
<class '__main__.Nstr'>

失败且常态 发表于 2023-1-1 16:15:44

lxping 发表于 2022-12-30 23:50
首先你在定义Nstr类的时候,class Nstr(int): 表示 int 类为 Nstr 的父类
int.__new__,这里的 int 就是父 ...

利用int基类调用__new__方法
请问这句话的意思是调用了int类里面的__new__方法吗
页: [1]
查看完整版本: 构造函数问题