Monsterccc 发表于 2020-7-19 15:18:28

课后练习41 02

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)


class Nint(int):
    def __new__(cls, x):
      if isinstance(x, str):
            temp = 0
            for each in x:
                temp += ord(each)
            return temp

最后的return同样是返回一个对象,程序运行的结果都一样,他们有什么区别?

Twilight6 发表于 2020-7-19 15:36:44



试试这个代码你就知道返回的有什么区别,__new__ 是将创建的实例对象返回给 __init__ 魔法方法的

而如果你不是这个创建出来的实例对象,那么你的实例化的这个对象就不算 Nint 类的实例化对象了:

# __________代码1____________
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)
# __________代码1打印___________
a = Nint('100')
print(type(a),a)

# __________代码2____________
class Nint(int):
    def __new__(cls, x):
      if isinstance(x, str):
            temp = 0
            for each in x:
                temp += ord(each)
      return temp
# __________代码2打印___________
a = Nint('100')
print(type(a),a)

打印结果:
<class '__main__.Nint'>   145
<class 'int'>   145

从打印结果都可以看出,第二个返回值为 int 类 说明不是 Nint类的实例化对象,而第一个成功返回了一个 Nint类的实例对象



Monsterccc 发表于 2020-7-19 15:47:07

Twilight6 发表于 2020-7-19 15:36
试试这个代码你就知道返回的有什么区别,__new__ 是将创建的实例对象返回给 __init__ 魔法方法的

而 ...

为什么要写a = Nint('100'),里面为什么是字符串?我试了a = Nint(100),怎么给我报错了?我原来是可以的呀。

Twilight6 发表于 2020-7-19 15:48:36

Monsterccc 发表于 2020-7-19 15:47
为什么要写a = Nint('100'),里面为什么是字符串?我试了a = Nint(100),怎么给我报错了?我原来是可以的 ...

你第二个代码不小心把 return 写到 if 里去了

Monsterccc 发表于 2020-7-19 15:55:30

Twilight6 发表于 2020-7-19 15:48
你第二个代码不小心把 return 写到 if 里去了

那为什么return在if里x可以是int类型的,在外面就不行,Nint这个类不是继承了int类吗?

Monsterccc 发表于 2020-7-19 16:03:46

Twilight6 发表于 2020-7-19 15:36
试试这个代码你就知道返回的有什么区别,__new__ 是将创建的实例对象返回给 __init__ 魔法方法的

而 ...

如果像第二的代码中返回的值是int的实例对象而不是Nint,会有什么影响?

Twilight6 发表于 2020-7-19 16:05:21

Monsterccc 发表于 2020-7-19 16:03
如果像第二的代码中返回的值是int的实例对象而不是Nint,会有什么影响?

你把你前面报错内容发我看看

如果像第二的代码中返回的值是int的实例对象而不是Nint,会有什么影响?

会导致这个返回的是 int 实例化对象,所以这个类调用的都是 int 类的方法而不是你重写的 Nint 的方法

Monsterccc 发表于 2020-7-19 16:08:11

Twilight6 发表于 2020-7-19 16:05
你把你前面报错内容发我看看




这样子的

Twilight6 发表于 2020-7-19 16:10:29

Monsterccc 发表于 2020-7-19 16:08
这样子的

因为你输入的是数字时候,100 不属于字符串,所以不执行 if 下面代码块,导致 temp 没有赋值报错

Monsterccc 发表于 2020-7-19 16:12:48

Twilight6 发表于 2020-7-19 16:10
因为你输入的是数字时候,100 不属于字符串,所以不执行 if 下面代码块,导致 temp 没有赋值报错

哦 哦,谢谢{:10_288:}
页: [1]
查看完整版本: 课后练习41 02